]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
MIPS: Replace calls to obsolete strict_strto call with kstrto* equivalents.
authorDaniel Walter <dwalter@google.com>
Tue, 3 Jun 2014 15:22:08 +0000 (16:22 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 4 Jun 2014 20:50:41 +0000 (22:50 +0200)
Signed-off-by: Daniel Walter <dwalter@google.com>
Cc: linux-kernel@vger.kernel.org
Cc: richard@nod.at
Cc: akpm@linux-foundation.org
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/pci/ops-tx4927.c
arch/mips/txx9/generic/setup.c

index 3d5df514d024aea51fb48553d25472cdcd1c8833..0e046d82e4e38035b1eb7a5e27bb483c750d7fdc 100644 (file)
@@ -202,17 +202,20 @@ char *tx4927_pcibios_setup(char *str)
        unsigned long val;
 
        if (!strncmp(str, "trdyto=", 7)) {
-               if (strict_strtoul(str + 7, 0, &val) == 0)
+               u8 val = 0;
+               if (kstrtou8(str + 7, 0, &val) == 0)
                        tx4927_pci_opts.trdyto = val;
                return NULL;
        }
        if (!strncmp(str, "retryto=", 8)) {
-               if (strict_strtoul(str + 8, 0, &val) == 0)
+               u8 val = 0;
+               if (kstrtou8(str + 8, 0, &val) == 0)
                        tx4927_pci_opts.retryto = val;
                return NULL;
        }
        if (!strncmp(str, "gbwc=", 5)) {
-               if (strict_strtoul(str + 5, 0, &val) == 0)
+               u16 val;
+               if (kstrtou16(str + 5, 0, &val) == 0)
                        tx4927_pci_opts.gbwc = val;
                return NULL;
        }
index 2b0b83c171e0959dfb946fd027ef32aa2ec31ca4..dd2cf25b5ae5c067c0f3170da4827903350b9869 100644 (file)
@@ -309,8 +309,8 @@ static void __init preprocess_cmdline(void)
                        txx9_board_vec = find_board_byname(str + 6);
                        continue;
                } else if (strncmp(str, "masterclk=", 10) == 0) {
-                       unsigned long val;
-                       if (strict_strtoul(str + 10, 10, &val) == 0)
+                       unsigned int val;
+                       if (kstrtouint(str + 10, 10, &val) == 0)
                                txx9_master_clock = val;
                        continue;
                } else if (strcmp(str, "icdisable") == 0) {