summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Thumshirn <morbidrsa@googlemail.com>2012-06-27 21:26:00 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-06 16:12:45 -0700
commit336cab9afa2567fd41d2813d3f0f9249371219cb (patch)
treee188e17e5c4c9efa727a4c64406f528924f3505a
parent8d6b7f7c9b3c346f2fef496827c3fbbc2ebef1a9 (diff)
staging: line6: control.c eliminate strict_strtoul() in pod_set_param_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>
-rw-r--r--drivers/staging/line6/control.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/line6/control.c b/drivers/staging/line6/control.c
index 67e23b6e2d35..f8326f587e38 100644
--- a/drivers/staging/line6/control.c
+++ b/drivers/staging/line6/control.c
@@ -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;