Author: jhb
Date: Thu Oct 15 14:55:11 2009
New Revision: 198135
URL: http://svn.freebsd.org/changeset/base/198135

Log:
  Style fixes to the function prototypes for bus_alloc_resources() and
  bus_release_resources().

Modified:
  head/sys/sys/bus.h

Modified: head/sys/sys/bus.h
==============================================================================
--- head/sys/sys/bus.h  Thu Oct 15 14:54:35 2009        (r198134)
+++ head/sys/sys/bus.h  Thu Oct 15 14:55:11 2009        (r198135)
@@ -347,8 +347,10 @@ struct resource_spec {
        int     flags;
 };
 
-int bus_alloc_resources(device_t dev, struct resource_spec *rs, struct 
resource **res);
-void bus_release_resources(device_t dev, const struct resource_spec *rs, 
struct resource **res);
+int    bus_alloc_resources(device_t dev, struct resource_spec *rs,
+                           struct resource **res);
+void   bus_release_resources(device_t dev, const struct resource_spec *rs,
+                             struct resource **res);
 
 struct resource *bus_alloc_resource(device_t dev, int type, int *rid,
                                     u_long start, u_long end, u_long count,
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to