mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
ASoC: pxa: 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>
This commit is contained in:
parent
3986b9829f
commit
0b4fa33741
@ -430,9 +430,6 @@ static int asoc_mmp_sspa_probe(struct platform_device *pdev)
|
||||
return -ENOMEM;
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
if (res == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
priv->sspa->mmio_base = devm_ioremap_resource(&pdev->dev, res);
|
||||
if (IS_ERR(priv->sspa->mmio_base))
|
||||
return PTR_ERR(priv->sspa->mmio_base);
|
||||
|
Loading…
Reference in New Issue
Block a user