Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Apr 2013 06:47:44 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r249224 - head/sys/cam
Message-ID:  <201304070647.r376liaa041944@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304070647.r376liaa041944>