Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Jan 2012 21:49:37 +0000 (UTC)
From:      Don Lewis <truckman@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r230317 - stable/9/sys/dev/pst
Message-ID:  <201201182149.q0ILnbPG058342@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: truckman
Date: Wed Jan 18 21:49:37 2012
New Revision: 230317
URL: http://svn.freebsd.org/changeset/base/230317

Log:
  MFC: r229984
  
  Pass the arguments to mtx_init() in the correct order.  There should be
  no change to the binary because the value of MTX_DEF is zero and there
  is a visible function prototype.

Modified:
  stable/9/sys/dev/pst/pst-pci.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/dev/pst/pst-pci.c
==============================================================================
--- stable/9/sys/dev/pst/pst-pci.c	Wed Jan 18 21:27:49 2012	(r230316)
+++ stable/9/sys/dev/pst/pst-pci.c	Wed Jan 18 21:49:37 2012	(r230317)
@@ -95,7 +95,7 @@ iop_pci_attach(device_t dev)
     sc->ibase = rman_get_virtual(sc->r_mem);
     sc->reg = (struct i2o_registers *)sc->ibase;
     sc->dev = dev;
-    mtx_init(&sc->mtx, "pst lock", MTX_DEF, 0);
+    mtx_init(&sc->mtx, "pst lock", NULL, MTX_DEF);
 
     if (!iop_init(sc))
 	return 0;



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