diff options
author | jhb <jhb@FreeBSD.org> | 2009-10-15 14:55:11 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2009-10-15 14:55:11 +0000 |
commit | 72083e858acff41f3c7a31f7547ed234691d0e48 (patch) | |
tree | 43b571d40d430bc3b4c0353669548a92c407232a | |
parent | 45688ed39df1a016dde3d3f3cb4f19e562a683c2 (diff) | |
download | FreeBSD-src-72083e858acff41f3c7a31f7547ed234691d0e48.zip FreeBSD-src-72083e858acff41f3c7a31f7547ed234691d0e48.tar.gz |
Style fixes to the function prototypes for bus_alloc_resources() and
bus_release_resources().
-rw-r--r-- | sys/sys/bus.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/sys/bus.h b/sys/sys/bus.h index 454f510..92f4238 100644 --- a/sys/sys/bus.h +++ b/sys/sys/bus.h @@ -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, |