Эх сурвалжийг харах

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>
Abhijit Pawar 12 жил өмнө
parent
commit
a71258d79e

+ 0 - 1
net/core/netpoll.c

@@ -706,7 +706,6 @@ int netpoll_parse_options(struct netpoll *np, char *opt)
 		*delim = 0;
 		*delim = 0;
 		if (*cur == ' ' || *cur == '\t')
 		if (*cur == ' ' || *cur == '\t')
 			np_info(np, "warning: whitespace is not allowed\n");
 			np_info(np, "warning: whitespace is not allowed\n");
-		np->remote_port = simple_strtol(cur, NULL, 10);
 		if (kstrtou16(cur, 10, &np->remote_port))
 		if (kstrtou16(cur, 10, &np->remote_port))
 			goto parse_failed;
 			goto parse_failed;
 		cur = delim;
 		cur = delim;

+ 0 - 1
net/mac80211/debugfs_sta.c

@@ -220,7 +220,6 @@ static ssize_t sta_agg_status_write(struct file *file, const char __user *userbu
 	} else
 	} else
 		return -EINVAL;
 		return -EINVAL;
 
 
-	tid = simple_strtoul(buf, NULL, 0);
 	ret = kstrtoul(buf, 0, &tid);
 	ret = kstrtoul(buf, 0, &tid);
 	if (ret)
 	if (ret)
 		return ret;
 		return ret;

+ 0 - 1
net/netfilter/nf_conntrack_core.c

@@ -1422,7 +1422,6 @@ int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
 	if (!nf_conntrack_htable_size)
 	if (!nf_conntrack_htable_size)
 		return param_set_uint(val, kp);
 		return param_set_uint(val, kp);
 
 
-	hashsize = simple_strtoul(val, NULL, 0);
 	rc = kstrtouint(val, 0, &hashsize);
 	rc = kstrtouint(val, 0, &hashsize);
 	if (rc)
 	if (rc)
 		return rc;
 		return rc;