projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b047e1c
)
ASoC: tegra20-ac97: Remove duplicate error message
author
Thierry Reding
<thierry.reding@gmail.com>
Fri, 28 Jun 2013 19:53:24 +0000
(21:53 +0200)
committer
Mark Brown
<broonie@linaro.org>
Sat, 29 Jun 2013 09:54:49 +0000
(10:54 +0100)
devm_ioremap_resource() already outputs an error message when any of the
operations it performs fails, so the duplicate in the caller can be
removed.
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/tegra/tegra20_ac97.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/soc/tegra/tegra20_ac97.c
b/sound/soc/tegra/tegra20_ac97.c
index f52eab6d2231ff581e64d4006a244548544ec87d..6c1255b44535d3054d07cbacd951ffcff214ef0a 100644
(file)
--- a/
sound/soc/tegra/tegra20_ac97.c
+++ b/
sound/soc/tegra/tegra20_ac97.c
@@
-343,7
+343,6
@@
static int tegra20_ac97_platform_probe(struct platform_device *pdev)
regs = devm_ioremap_resource(&pdev->dev, mem);
if (IS_ERR(regs)) {
ret = PTR_ERR(regs);
- dev_err(&pdev->dev, "ioremap failed: %d\n", ret);
goto err_clk_put;
}