diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2013-07-23 18:01:56 (GMT) |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-07-24 14:34:16 (GMT) |
commit | 916dd4130c9d045b8b50c16211b4d68ce147e50f (patch) | |
tree | 3161ddfd4e133ef34710fd12fc1e91584384cc8e /sound/soc/nuc900 | |
parent | 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b (diff) | |
download | linux-916dd4130c9d045b8b50c16211b4d68ce147e50f.tar.xz |
ASoC: nuc900: don't check resource with devm_ioremap_resource
devm_ioremap_resource does sanity checks on the given resource. No need to
duplicate this in the driver.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/nuc900')
-rw-r--r-- | sound/soc/nuc900/nuc900-ac97.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/soc/nuc900/nuc900-ac97.c b/sound/soc/nuc900/nuc900-ac97.c index f4c2417..8987bf9 100644 --- a/sound/soc/nuc900/nuc900-ac97.c +++ b/sound/soc/nuc900/nuc900-ac97.c @@ -333,9 +333,6 @@ static int nuc900_ac97_drvprobe(struct platform_device *pdev) spin_lock_init(&nuc900_audio->lock); nuc900_audio->res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - if (!nuc900_audio->res) - return ret; - nuc900_audio->mmio = devm_ioremap_resource(&pdev->dev, nuc900_audio->res); if (IS_ERR(nuc900_audio->mmio)) |