svn commit: r249618 - stable/9/sys/cam

Alexander Motin mav at FreeBSD.org
Thu Apr 18 10:42:49 UTC 2013


Author: mav
Date: Thu Apr 18 10:42:48 2013
New Revision: 249618
URL: http://svnweb.freebsd.org/changeset/base/249618

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

Modified:
  stable/9/sys/cam/cam_sim.h
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/cam/cam_sim.h
==============================================================================
--- stable/9/sys/cam/cam_sim.h	Thu Apr 18 10:40:40 2013	(r249617)
+++ stable/9/sys/cam/cam_sim.h	Thu Apr 18 10:42:48 2013	(r249618)
@@ -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-stable mailing list