Commit a71258d79e3d05632e90c9f7db5ccf929d276529

Authored by Abhijit Pawar
Committed by David S. Miller
1 parent a676847b39

net: remove obsolete simple_strto<foo>

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>

Showing 3 changed files with 0 additions and 3 deletions Side-by-side Diff

... ... @@ -706,7 +706,6 @@
706 706 *delim = 0;
707 707 if (*cur == ' ' || *cur == '\t')
708 708 np_info(np, "warning: whitespace is not allowed\n");
709   - np->remote_port = simple_strtol(cur, NULL, 10);
710 709 if (kstrtou16(cur, 10, &np->remote_port))
711 710 goto parse_failed;
712 711 cur = delim;
net/mac80211/debugfs_sta.c
... ... @@ -220,7 +220,6 @@
220 220 } else
221 221 return -EINVAL;
222 222  
223   - tid = simple_strtoul(buf, NULL, 0);
224 223 ret = kstrtoul(buf, 0, &tid);
225 224 if (ret)
226 225 return ret;
net/netfilter/nf_conntrack_core.c
... ... @@ -1422,7 +1422,6 @@
1422 1422 if (!nf_conntrack_htable_size)
1423 1423 return param_set_uint(val, kp);
1424 1424  
1425   - hashsize = simple_strtoul(val, NULL, 0);
1426 1425 rc = kstrtouint(val, 0, &hashsize);
1427 1426 if (rc)
1428 1427 return rc;