]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
USB: drivers/usb/serial/bus.c: Fix incompatible pointer type warning
authorSatyam Sharma <satyam@infradead.org>
Sun, 2 Sep 2007 20:12:43 +0000 (01:42 +0530)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 11 Sep 2007 14:48:17 +0000 (07:48 -0700)
drivers/usb/serial/bus.c: In function usb_serial_bus_deregister:
drivers/usb/serial/bus.c:185:
warning: passing argument 1 of free_dynids from incompatible pointer type

Above build warning comes when CONFIG_HOTPLUG=n because argument of
free_dynids() in serial/bus.c is a struct usb_serial_driver, not a
struct usb_driver. This is not a runtime bug, because the function
is an empty stub and never dereferences the passed pointer anyway.

Signed-off-by: Satyam Sharma <satyam@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/serial/bus.c

index c08a38402b93a1287562ae254d367c51da12d3e5..a47a24f8820dce01ee6d949f3167fbeb15dd3b61 100644 (file)
@@ -138,7 +138,7 @@ static void free_dynids(struct usb_serial_driver *drv)
 static struct driver_attribute drv_attrs[] = {
        __ATTR_NULL,
 };
-static inline void free_dynids(struct usb_driver *drv)
+static inline void free_dynids(struct usb_serial_driver *drv)
 {
 }
 #endif