diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2013-07-23 14:01:56 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-07-24 10:34:16 -0400 |
commit | 916dd4130c9d045b8b50c16211b4d68ce147e50f (patch) | |
tree | 3161ddfd4e133ef34710fd12fc1e91584384cc8e /sound/soc/nuc900 | |
parent | 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b (diff) |
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 f4c2417a8730..8987bf987e58 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) | |||
333 | spin_lock_init(&nuc900_audio->lock); | 333 | spin_lock_init(&nuc900_audio->lock); |
334 | 334 | ||
335 | nuc900_audio->res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 335 | nuc900_audio->res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
336 | if (!nuc900_audio->res) | ||
337 | return ret; | ||
338 | |||
339 | nuc900_audio->mmio = devm_ioremap_resource(&pdev->dev, | 336 | nuc900_audio->mmio = devm_ioremap_resource(&pdev->dev, |
340 | nuc900_audio->res); | 337 | nuc900_audio->res); |
341 | if (IS_ERR(nuc900_audio->mmio)) | 338 | if (IS_ERR(nuc900_audio->mmio)) |