diff options
author | thompsa <thompsa@FreeBSD.org> | 2008-12-11 23:13:02 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2008-12-11 23:13:02 +0000 |
commit | f0bc2443fb563ef6515d23cfb540d20ed77bba6e (patch) | |
tree | a70eb27b0f4b1a03b9690b42bd1058449e25499e /sys/dev/usb2/controller/usb2_controller.c | |
parent | 4014de0d1b683eb810af4142f7b459f6a02560d0 (diff) | |
download | FreeBSD-src-f0bc2443fb563ef6515d23cfb540d20ed77bba6e.zip FreeBSD-src-f0bc2443fb563ef6515d23cfb540d20ed77bba6e.tar.gz |
Format and wrap function declarations.
Diffstat (limited to 'sys/dev/usb2/controller/usb2_controller.c')
-rw-r--r-- | sys/dev/usb2/controller/usb2_controller.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/sys/dev/usb2/controller/usb2_controller.c b/sys/dev/usb2/controller/usb2_controller.c index 028c312..a9952d2 100644 --- a/sys/dev/usb2/controller/usb2_controller.c +++ b/sys/dev/usb2/controller/usb2_controller.c @@ -48,11 +48,17 @@ static device_probe_t usb2_probe; static device_attach_t usb2_attach; static device_detach_t usb2_detach; -static void usb2_attach_sub(device_t dev, struct usb2_bus *bus); -static void usb2_post_init(void *arg); -static void usb2_bus_mem_flush_all_cb(struct usb2_bus *bus, struct usb2_page_cache *pc, struct usb2_page *pg, uint32_t size, uint32_t align); -static void usb2_bus_mem_alloc_all_cb(struct usb2_bus *bus, struct usb2_page_cache *pc, struct usb2_page *pg, uint32_t size, uint32_t align); -static void usb2_bus_mem_free_all_cb(struct usb2_bus *bus, struct usb2_page_cache *pc, struct usb2_page *pg, uint32_t size, uint32_t align); +static void usb2_attach_sub(device_t, struct usb2_bus *); +static void usb2_post_init(void *); +static void usb2_bus_mem_flush_all_cb(struct usb2_bus *, + struct usb2_page_cache *, struct usb2_page *, uint32_t, + uint32_t); +static void usb2_bus_mem_alloc_all_cb(struct usb2_bus *, + struct usb2_page_cache *, struct usb2_page *, uint32_t, + uint32_t); +static void usb2_bus_mem_free_all_cb(struct usb2_bus *, + struct usb2_page_cache *, struct usb2_page *, uint32_t, + uint32_t); /* static variables */ |