]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: ft1000-usb: Fix call to obsolete function
authorKurt Kanzenbach <shifty91@gmail.com>
Wed, 5 Dec 2012 19:03:35 +0000 (20:03 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Jan 2013 20:33:45 +0000 (12:33 -0800)
strict_strtoul is obsolete and should be replaced with
kstrto* function as reported by checkpatch.pl.
pInfo->CardNumber is a u8. This is why kstrtou8 should be
used here.

Signed-off-by: Kurt Kanzenbach <shifty91@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ft1000/ft1000-usb/ft1000_hw.c

index fe1e530d984fb0b08aad981ca634832725a7f1c6..9b8fed7b405b141ac234821b1a0ddfc0b7347326 100644 (file)
@@ -702,7 +702,7 @@ int init_ft1000_netdev(struct ft1000_usb *ft1000dev)
        int i, ret_val;
        struct list_head *cur, *tmp;
        char card_nr[2];
-       unsigned long gCardIndex = 0;
+       u8 gCardIndex = 0;
 
        DEBUG("Enter init_ft1000_netdev...\n");
 
@@ -723,7 +723,7 @@ int init_ft1000_netdev(struct ft1000_usb *ft1000dev)
        if (strncmp(netdev->name, "eth", 3) == 0) {
                card_nr[0] = netdev->name[3];
                card_nr[1] = '\0';
-               ret_val = strict_strtoul(card_nr, 10, &gCardIndex);
+               ret_val = kstrtou8(card_nr, 10, &gCardIndex);
                if (ret_val) {
                        printk(KERN_ERR "Can't parse netdev\n");
                        goto err_net;