diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2008-07-04 11:01:14 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-07-10 03:32:21 -0400 |
commit | 73ead4855d98e330f2840523e1648575b9f2aae9 (patch) | |
tree | fa3f20cfcd5da139de81a4865e959998fe003bd5 /sound/soc | |
parent | 3f775987030cf7ff922765c18ddd0d311b4b46ef (diff) |
ALSA: ASoC: Fix warning from strict_strtoul()
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/soc-dapm.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 7c2dd4ec8df1..91cbbefefb0a 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c | |||
@@ -827,7 +827,11 @@ static ssize_t dapm_pop_time_store(struct device *dev, | |||
827 | const char *buf, size_t count) | 827 | const char *buf, size_t count) |
828 | 828 | ||
829 | { | 829 | { |
830 | if (strict_strtoul(buf, 10, &pop_time) < 0) | 830 | unsigned long val; |
831 | |||
832 | if (strict_strtoul(buf, 10, &val) >= 0) | ||
833 | pop_time = val; | ||
834 | else | ||
831 | printk(KERN_ERR "Unable to parse pop_time setting\n"); | 835 | printk(KERN_ERR "Unable to parse pop_time setting\n"); |
832 | 836 | ||
833 | return count; | 837 | return count; |