From owner-svn-src-stable-9@FreeBSD.ORG Thu Apr 18 10:42:49 2013 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 800DA198; Thu, 18 Apr 2013 10:42:49 +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 727E5B61; Thu, 18 Apr 2013 10:42:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3IAgnBv013091; Thu, 18 Apr 2013 10:42:49 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3IAgncj013090; Thu, 18 Apr 2013 10:42:49 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <201304181042.r3IAgncj013090@svn.freebsd.org> From: Alexander Motin Date: Thu, 18 Apr 2013 10:42:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r249618 - stable/9/sys/cam X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Apr 2013 10:42:49 -0000 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)