Staging: line6/midi.c: Fixed call of obsolete function strict_strtoul
The obsolete function strict_strtoul should be replaced by the kstrto* functions. In this context kstrtou16 should be use, as midi_mask_receive is only used as unsigned short. All corresponding datatypes were adapted accordingly. Signed-off-by: Andor Daam <andor.daam@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
4d85fae04f
commit
251c394880
@ -339,10 +339,10 @@ static ssize_t midi_set_midi_mask_receive(struct device *dev,
|
|||||||
{
|
{
|
||||||
struct usb_interface *interface = to_usb_interface(dev);
|
struct usb_interface *interface = to_usb_interface(dev);
|
||||||
struct usb_line6 *line6 = usb_get_intfdata(interface);
|
struct usb_line6 *line6 = usb_get_intfdata(interface);
|
||||||
unsigned long value;
|
unsigned short value;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = strict_strtoul(buf, 10, &value);
|
ret = kstrtou16(buf, 10, &value);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ struct snd_line6_midi {
|
|||||||
/**
|
/**
|
||||||
Bit mask for input MIDI channels.
|
Bit mask for input MIDI channels.
|
||||||
*/
|
*/
|
||||||
int midi_mask_receive;
|
unsigned short midi_mask_receive;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Buffer for incoming MIDI stream.
|
Buffer for incoming MIDI stream.
|
||||||
|
Loading…
Reference in New Issue
Block a user