Just wanted to ask about the status of this patch.

On Sun, May 20, 2012 at 2:55 PM, Johannes Thumshirn
<[email protected]> wrote:
> Changed strict_strtoul() calls which do not result in a need to change
> interfaces of called functions.
>
> Suggested-by: Dan Carpenter <[email protected]>
> Signed-off-by: Johannes Thumshirn <[email protected]>
> ---
>  drivers/staging/line6/variax.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/staging/line6/variax.c b/drivers/staging/line6/variax.c
> index d366222..efa496d 100644
> --- a/drivers/staging/line6/variax.c
> +++ b/drivers/staging/line6/variax.c
> @@ -353,10 +353,10 @@ static ssize_t variax_set_model(struct device *dev,
>  {
>        struct usb_line6_variax *variax =
>            usb_get_intfdata(to_usb_interface(dev));
> -       unsigned long value;
> +       u8 value;
>        int ret;
>
> -       ret = strict_strtoul(buf, 10, &value);
> +       ret = kstrtou8(buf, 10, &value);
>        if (ret)
>                return ret;
>
> @@ -387,10 +387,10 @@ static ssize_t variax_set_active(struct device *dev,
>  {
>        struct usb_line6_variax *variax =
>            usb_get_intfdata(to_usb_interface(dev));
> -       unsigned long value;
> +       u8 value;
>        int ret;
>
> -       ret = strict_strtoul(buf, 10, &value);
> +       ret = kstrtou8(buf, 10, &value);
>        if (ret)
>                return ret;
>
> --
> 1.7.7.6
>
_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to