mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-21 00:42:16 +00:00
staging: line6: pcm.c: Changed simple_strtoul to kstrtoint
Changed call to simple_strtoul to kstrtoint in pcm_set_impulse_volume(...) Signed-off-by: Johannes Thumshirn <morbidrsa@googlemail.com> Reviewed-by: Stefan Hajnoczi <stefanha@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d7de993503
commit
cdf5e55124
@ -48,7 +48,13 @@ static ssize_t pcm_set_impulse_volume(struct device *dev,
|
|||||||
const char *buf, size_t count)
|
const char *buf, size_t count)
|
||||||
{
|
{
|
||||||
struct snd_line6_pcm *line6pcm = dev2pcm(dev);
|
struct snd_line6_pcm *line6pcm = dev2pcm(dev);
|
||||||
int value = simple_strtoul(buf, NULL, 10);
|
int value;
|
||||||
|
int rv;
|
||||||
|
|
||||||
|
rv = kstrtoint(buf, 10, &value);
|
||||||
|
if (rv < 0)
|
||||||
|
return rv;
|
||||||
|
|
||||||
line6pcm->impulse_volume = value;
|
line6pcm->impulse_volume = value;
|
||||||
|
|
||||||
if (value > 0)
|
if (value > 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user