svn commit: r233678 - head/sys/dev/pci

Jung-uk Kim jkim at FreeBSD.org
Thu Mar 29 19:29:25 UTC 2012


Author: jkim
Date: Thu Mar 29 19:29:24 2012
New Revision: 233678
URL: http://svn.freebsd.org/changeset/base/233678

Log:
  Fix couple of style nits.

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

Modified: head/sys/dev/pci/pci.c
==============================================================================
--- head/sys/dev/pci/pci.c	Thu Mar 29 19:26:39 2012	(r233677)
+++ head/sys/dev/pci/pci.c	Thu Mar 29 19:29:24 2012	(r233678)
@@ -3894,7 +3894,7 @@ pci_describe_device(device_t dev)
 	if ((desc = malloc(strlen(vp) + strlen(dp) + 3, M_DEVBUF, M_NOWAIT)) !=
 	    NULL)
 		sprintf(desc, "%s, %s", vp, dp);
- out:
+out:
 	if (vp != NULL)
 		free(vp, M_DEVBUF);
 	if (dp != NULL)
@@ -4170,7 +4170,7 @@ pci_reserve_map(device_t dev, device_t c
 		    count, *rid, type, rman_get_start(res));
 	map = rman_get_start(res);
 	pci_write_bar(child, pm, map);
-out:;
+out:
 	return (res);
 }
 


More information about the svn-src-head mailing list