svn commit: r193068 - head/sys/dev/usb/controller

Andrew Thompson thompsa at FreeBSD.org
Fri May 29 22:11:23 UTC 2009


Author: thompsa
Date: Fri May 29 22:11:22 2009
New Revision: 193068
URL: http://svn.freebsd.org/changeset/base/193068

Log:
  Fix function arguments were previously they matched the typedef by accident.

Modified:
  head/sys/dev/usb/controller/usb_controller.c

Modified: head/sys/dev/usb/controller/usb_controller.c
==============================================================================
--- head/sys/dev/usb/controller/usb_controller.c	Fri May 29 21:31:44 2009	(r193067)
+++ head/sys/dev/usb/controller/usb_controller.c	Fri May 29 22:11:22 2009	(r193068)
@@ -485,7 +485,7 @@ SYSUNINIT(usb2_bus_unload, SI_SUB_KLD, S
 #if USB_HAVE_BUSDMA
 static void
 usb2_bus_mem_flush_all_cb(struct usb_bus *bus, struct usb_page_cache *pc,
-    struct usb_page *pg, uint32_t size, uint32_t align)
+    struct usb_page *pg, size_t size, size_t align)
 {
 	usb2_pc_cpu_flush(pc);
 }
@@ -510,7 +510,7 @@ usb2_bus_mem_flush_all(struct usb_bus *b
 #if USB_HAVE_BUSDMA
 static void
 usb2_bus_mem_alloc_all_cb(struct usb_bus *bus, struct usb_page_cache *pc,
-    struct usb_page *pg, uint32_t size, uint32_t align)
+    struct usb_page *pg, size_t size, size_t align)
 {
 	/* need to initialize the page cache */
 	pc->tag_parent = bus->dma_parent_tag;
@@ -570,7 +570,7 @@ usb2_bus_mem_alloc_all(struct usb_bus *b
 #if USB_HAVE_BUSDMA
 static void
 usb2_bus_mem_free_all_cb(struct usb_bus *bus, struct usb_page_cache *pc,
-    struct usb_page *pg, uint32_t size, uint32_t align)
+    struct usb_page *pg, size_t size, size_t align)
 {
 	usb2_pc_free_mem(pc);
 }


More information about the svn-src-all mailing list