Skip to content

Commit

Permalink
staging: line6: control.c eliminate strict_strtoul() in pod_set_param…
Browse files Browse the repository at this point in the history
…_int()

Exchange strict_strtoul() with kstrtou8() and make "value" a u8 instead of a
unsigned long. This is also needed for the changed
line6_pod_transmit_parameter().

Signed-off-by: Johannes Thumshirn <morbidrsa@googlemail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Johannes Thumshirn authored and Greg Kroah-Hartman committed Jul 6, 2012
1 parent 8d6b7f7 commit 336cab9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/line6/control.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ static ssize_t pod_set_param_int(struct device *dev, const char *buf,
{
struct usb_interface *interface = to_usb_interface(dev);
struct usb_line6_pod *pod = usb_get_intfdata(interface);
unsigned long value;
u8 value;
int retval;

retval = strict_strtoul(buf, 10, &value);
retval = kstrtou8(buf, 10, &value);
if (retval)
return retval;

Expand Down

0 comments on commit 336cab9

Please sign in to comment.