svn commit: r184386 - head/sys/i386/isa

Warner Losh imp at FreeBSD.org
Mon Oct 27 21:32:41 PDT 2008


Author: imp
Date: Tue Oct 28 04:32:41 2008
New Revision: 184386
URL: http://svn.freebsd.org/changeset/base/184386

Log:
  style(9) nit: remove unnecessary {} pair.

Modified:
  head/sys/i386/isa/pmtimer.c

Modified: head/sys/i386/isa/pmtimer.c
==============================================================================
--- head/sys/i386/isa/pmtimer.c	Tue Oct 28 03:26:25 2008	(r184385)
+++ head/sys/i386/isa/pmtimer.c	Tue Oct 28 04:32:41 2008	(r184386)
@@ -69,9 +69,8 @@ static int
 pmtimer_probe(device_t dev)
 {
 
-	if (ISA_PNP_PROBE(device_get_parent(dev), dev, pmtimer_ids) == ENXIO) {
+	if (ISA_PNP_PROBE(device_get_parent(dev), dev, pmtimer_ids) == ENXIO)
 		return (ENXIO);
-	}
 
 	/* only one instance always */
 	return (device_get_unit(dev));


More information about the svn-src-head mailing list