Author: truckman
Date: Wed Jan 11 21:38:05 2012
New Revision: 229984
URL: http://svn.freebsd.org/changeset/base/229984

Log:
  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.
  
  MFC after:    1 week

Modified:
  head/sys/dev/pst/pst-pci.c

Modified: head/sys/dev/pst/pst-pci.c
==============================================================================
--- head/sys/dev/pst/pst-pci.c  Wed Jan 11 21:26:46 2012        (r229983)
+++ head/sys/dev/pst/pst-pci.c  Wed Jan 11 21:38:05 2012        (r229984)
@@ -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;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to