diff options
author | Jingoo Han | 2013-07-19 16:24:59 +0900 |
---|---|---|
committer | Takashi Iwai | 2013-07-21 11:56:18 +0200 |
commit | b785a492c6eef578520594d5c4d6e9f2cb47cbeb (patch) | |
tree | 35a3c156036348e31b4a4b95f8de64d7f89f8f78 /sound/soc/omap | |
parent | 60ea8ca21b4584cebb8163879b50ab3d941090bf (diff) |
ALSA: replace strict_strto*() with kstrto*()
The usage of strict_strto*() is not preferred, because
strict_strto*() is obsolete. Thus, kstrto*() should be
used.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/omap')
-rw-r--r-- | sound/soc/omap/mcbsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/omap/mcbsp.c b/sound/soc/omap/mcbsp.c index eb68c7db1cf3..e4980c5d7609 100644 --- a/sound/soc/omap/mcbsp.c +++ b/sound/soc/omap/mcbsp.c @@ -781,7 +781,7 @@ static ssize_t prop##_store(struct device *dev, \ unsigned long val; \ int status; \ \ - status = strict_strtoul(buf, 0, &val); \ + status = kstrtoul(buf, 0, &val); \ if (status) \ return status; \ \ |