From owner-svn-src-head@FreeBSD.ORG Sun Apr 7 06:47:45 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1CD99E70; Sun, 7 Apr 2013 06:47:45 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0FB3B1AB7; Sun, 7 Apr 2013 06:47:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r376liFa041945; Sun, 7 Apr 2013 06:47:44 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r376liaa041944; Sun, 7 Apr 2013 06:47:44 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <201304070647.r376liaa041944@svn.freebsd.org> From: Alexander Motin Date: Sun, 7 Apr 2013 06:47:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r249224 - head/sys/cam X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Apr 2013 06:47:45 -0000 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)