staging: ft1000: Use specific error return code for reg_ft1000_netdev().
authorMarek Belisko <marek.belisko@gmail.com>
Fri, 15 Oct 2010 07:41:45 +0000 (09:41 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 15 Oct 2010 19:42:45 +0000 (12:42 -0700)
Signed-off-by: Marek Belisko <marek.belisko@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/ft1000/ft1000-usb/ft1000_hw.c
drivers/staging/ft1000/ft1000-usb/ft1000_usb.c
drivers/staging/ft1000/ft1000-usb/ft1000_usb.h

index 1f91f22..46ce17c 100644 (file)
@@ -1103,7 +1103,7 @@ err_net:
 // Notes:
 //
 //---------------------------------------------------------------------------
-u16 reg_ft1000_netdev(struct ft1000_device *ft1000dev, struct usb_interface *intf)
+int reg_ft1000_netdev(struct ft1000_device *ft1000dev, struct usb_interface *intf)
 {
     struct net_device *netdev;
     FT1000_INFO *pInfo;
@@ -1124,7 +1124,7 @@ u16 reg_ft1000_netdev(struct ft1000_device *ft1000dev, struct usb_interface *int
     {
         DEBUG("reg_ft1000_netdev: could not register network device\n");
         free_netdev(netdev);
-        return STATUS_FAILURE;
+       return rc;
     }
 
 
@@ -1149,7 +1149,7 @@ u16 reg_ft1000_netdev(struct ft1000_device *ft1000dev, struct usb_interface *int
     pInfo->CardReady = 1;
 
 
-   return STATUS_SUCCESS;
+       return 0;
 }
 
 static int ft1000_reset(struct net_device *dev)
index a2c415e..5fae954 100644 (file)
@@ -191,7 +191,9 @@ static int ft1000_probe(struct usb_interface *interface,
 
        DEBUG("ft1000_probe::Card Ready!!!! Registering network device\n");
 
-       reg_ft1000_netdev(ft1000dev, interface);
+       ret = reg_ft1000_netdev(ft1000dev, interface);
+       if (ret)
+               goto err_load;
 
        pft1000info->NetDevRegDone = 1;
 
index 4368b49..2bc27f5 100644 (file)
@@ -597,7 +597,7 @@ char *getfw (char *fn, size_t *pimgsz);
 int dsp_reload(struct ft1000_device *ft1000dev);
 u16 init_ft1000_netdev(struct ft1000_device *ft1000dev);
 struct usb_interface;
-u16 reg_ft1000_netdev(struct ft1000_device *ft1000dev, struct usb_interface *intf);
+int reg_ft1000_netdev(struct ft1000_device *ft1000dev, struct usb_interface *intf);
 int ft1000_poll(void* dev_id);
 
 void ft1000InitProc(struct net_device *dev);