summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath9k/htc_drv_debug.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-05-31 21:24:06 (GMT)
committerDavid S. Miller <davem@davemloft.net>2013-06-03 07:39:46 (GMT)
commit27d7f47756f40fb1bc3159e09217f740f5c5b5b1 (patch)
treec4f2d3368efab3eaf4bb6bca9499a62dd688e131 /drivers/net/wireless/ath/ath9k/htc_drv_debug.c
parent67d6bfa6863c8535445e1dcdb3385e3a05cd32a7 (diff)
downloadlinux-27d7f47756f40fb1bc3159e09217f740f5c5b5b1.tar.xz
net: wireless: replace strict_strtoul() with kstrtoul()
The usage of strict_strtoul() is not preferred, because strict_strtoul() is obsolete. Thus, kstrtoul() should be used. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/htc_drv_debug.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/htc_drv_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_debug.c b/drivers/net/wireless/ath/ath9k/htc_drv_debug.c
index 87110de5..d08ef24 100644
--- a/drivers/net/wireless/ath/ath9k/htc_drv_debug.c
+++ b/drivers/net/wireless/ath/ath9k/htc_drv_debug.c
@@ -471,7 +471,7 @@ static ssize_t write_file_debug(struct file *file, const char __user *user_buf,
return -EFAULT;
buf[len] = '\0';
- if (strict_strtoul(buf, 0, &mask))
+ if (kstrtoul(buf, 0, &mask))
return -EINVAL;
common->debug_mask = mask;