]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/commitdiff
smsc95xx: fix function prototype of async callback
authorSteve Glendinning <steve.glendinning@smsc.com>
Mon, 26 Jan 2009 01:54:46 +0000 (17:54 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 26 Jan 2009 01:54:46 +0000 (17:54 -0800)
smsc95xx_async_cmd_callback doesn't currently match usb_complete_t, so
there's a cast to force the square peg into the round hole.  This patch
fixes this properly.

Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/smsc95xx.c

index 26fabefdfd3084e37c7b16e98a4fc20be4ff0cbd..5b0b9647382c26cf13234bd0d82f20d6551e86ba 100644 (file)
@@ -306,7 +306,7 @@ static int smsc95xx_write_eeprom(struct usbnet *dev, u32 offset, u32 length,
        return 0;
 }
 
-static void smsc95xx_async_cmd_callback(struct urb *urb, struct pt_regs *regs)
+static void smsc95xx_async_cmd_callback(struct urb *urb)
 {
        struct usb_context *usb_context = urb->context;
        struct usbnet *dev = usb_context->dev;
@@ -348,7 +348,7 @@ static int smsc95xx_write_reg_async(struct usbnet *dev, u16 index, u32 *data)
 
        usb_fill_control_urb(urb, dev->udev, usb_sndctrlpipe(dev->udev, 0),
                (void *)&usb_context->req, data, size,
-               (usb_complete_t)smsc95xx_async_cmd_callback,
+               smsc95xx_async_cmd_callback,
                (void *)usb_context);
 
        status = usb_submit_urb(urb, GFP_ATOMIC);