]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/commitdiff
net: remove obsolete simple_strto<foo>
authorAbhijit Pawar <abhi.c.pawar@gmail.com>
Mon, 10 Dec 2012 19:30:52 +0000 (19:30 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 11 Dec 2012 17:49:53 +0000 (12:49 -0500)
This patch removes the redundant occurences of simple_strto<foo>

Signed-off-by: Abhijit Pawar <abhi.c.pawar@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/netpoll.c
net/mac80211/debugfs_sta.c
net/netfilter/nf_conntrack_core.c

index 12c129f726f94d7bd82402292b499da369aafc13..3151acf5ec13afb34480a28a3f4a73deae69990a 100644 (file)
@@ -706,7 +706,6 @@ int netpoll_parse_options(struct netpoll *np, char *opt)
                *delim = 0;
                if (*cur == ' ' || *cur == '\t')
                        np_info(np, "warning: whitespace is not allowed\n");
-               np->remote_port = simple_strtol(cur, NULL, 10);
                if (kstrtou16(cur, 10, &np->remote_port))
                        goto parse_failed;
                cur = delim;
index 0dedb4bd962326755f15445556607d0004086144..6fb1168b9f16dabb5f35f8315f28ee8d10d4820c 100644 (file)
@@ -220,7 +220,6 @@ static ssize_t sta_agg_status_write(struct file *file, const char __user *userbu
        } else
                return -EINVAL;
 
-       tid = simple_strtoul(buf, NULL, 0);
        ret = kstrtoul(buf, 0, &tid);
        if (ret)
                return ret;
index 37d9e628106d1a15f0d5dc2dfc7cde0a7082584e..08cdc71d8e8714b75782379929fa6b050dafa7f4 100644 (file)
@@ -1422,7 +1422,6 @@ int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
        if (!nf_conntrack_htable_size)
                return param_set_uint(val, kp);
 
-       hashsize = simple_strtoul(val, NULL, 0);
        rc = kstrtouint(val, 0, &hashsize);
        if (rc)
                return rc;