On Mon, 29 Oct 2012, Jingoo Han wrote:

> The usage of strict_strtoul() is not preferred, because
> strict_strtoul() is obsolete. Thus, kstrtoul() should be
> used.
> 
> Signed-off-by: Jingoo Han <[email protected]>
> ---
>  drivers/usb/host/ehci-dbg.c |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/usb/host/ehci-dbg.c b/drivers/usb/host/ehci-dbg.c
> index 1599806..db3a7e3 100644
> --- a/drivers/usb/host/ehci-dbg.c
> +++ b/drivers/usb/host/ehci-dbg.c
> @@ -1006,7 +1006,7 @@ static ssize_t debug_lpm_write(struct file *file, const 
> char __user *user_buf,
>               buf[len - 1] = '\0';
>  
>       if (strncmp(buf, "enable", 5) == 0) {
> -             if (strict_strtoul(buf + 7, 10, &port))
> +             if (kstrtoul(buf + 7, 10, &port))

This patch is not needed.  After Hurricane Sandy passes I will send in
a patch that removes this function entirely.

Alan Stern

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to