Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 May 2009 22:11:22 +0000 (UTC)
From:      Andrew Thompson <thompsa@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r193068 - head/sys/dev/usb/controller
Message-ID:  <200905292211.n4TMBMTw088249@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905292211.n4TMBMTw088249>