svn commit: r249224 - head/sys/cam

Alexander Motin mav at FreeBSD.org
Sun Apr 7 06:47:45 UTC 2013


Author: mav
Date: Sun Apr  7 06:47:44 2013
New Revision: 249224
URL: http://svnweb.freebsd.org/changeset/base/249224

Log:
  Remove extra semicolons from CAM_SIM_[UN]LOCK() macros.

Modified:
  head/sys/cam/cam_sim.h

Modified: head/sys/cam/cam_sim.h
==============================================================================
--- head/sys/cam/cam_sim.h	Sun Apr  7 05:53:42 2013	(r249223)
+++ head/sys/cam/cam_sim.h	Sun Apr  7 06:47:44 2013	(r249224)
@@ -123,8 +123,8 @@ struct cam_sim {
 
 };
 
-#define CAM_SIM_LOCK(sim)	mtx_lock((sim)->mtx);
-#define CAM_SIM_UNLOCK(sim)	mtx_unlock((sim)->mtx);
+#define CAM_SIM_LOCK(sim)	mtx_lock((sim)->mtx)
+#define CAM_SIM_UNLOCK(sim)	mtx_unlock((sim)->mtx)
 
 static __inline u_int32_t
 cam_sim_path(struct cam_sim *sim)


More information about the svn-src-head mailing list