svn commit: r214913 - head/sys/dev/wb

Marius Strobl marius at FreeBSD.org
Sun Nov 7 12:29:27 UTC 2010


Author: marius
Date: Sun Nov  7 12:29:26 2010
New Revision: 214913
URL: http://svn.freebsd.org/changeset/base/214913

Log:
  Fix indentation in r213894.

Modified:
  head/sys/dev/wb/if_wb.c

Modified: head/sys/dev/wb/if_wb.c
==============================================================================
--- head/sys/dev/wb/if_wb.c	Sun Nov  7 11:51:57 2010	(r214912)
+++ head/sys/dev/wb/if_wb.c	Sun Nov  7 12:29:26 2010	(r214913)
@@ -857,7 +857,7 @@ wb_attach(dev)
 	 */
 	error = mii_attach(dev, &sc->wb_miibus, ifp, wb_ifmedia_upd,
 	    wb_ifmedia_sts, BMSR_DEFCAPMASK, MII_PHY_ANY, MII_OFFSET_ANY, 0);
-		if (error != 0) {
+	if (error != 0) {
 		device_printf(dev, "attaching PHYs failed\n");
 		goto fail;
 	}


More information about the svn-src-head mailing list