mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
net/mac80211/debugfs.c: use kstrtoul, etc
Use kstrtoul, etc instead of the now deprecated strict_strtoul, etc. A semantic patch rule for the kstrtoul case is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression a,b; {int,long} *c; @@ -strict_strtoul +kstrtoul (a,b,c) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
a729cff8ad
commit
61e3f32c11
@ -190,7 +190,7 @@ static ssize_t uapsd_max_sp_len_write(struct file *file,
|
||||
return -EFAULT;
|
||||
buf[len] = '\0';
|
||||
|
||||
ret = strict_strtoul(buf, 0, &val);
|
||||
ret = kstrtoul(buf, 0, &val);
|
||||
|
||||
if (ret)
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user