hwrng: omap - use devm_platform_ioremap_resource() to simplify code
Use devm_platform_ioremap_resource() to simplify the code a bit. This is detected by coccinelle. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Родитель
fc963e029d
Коммит
c7c16c58be
|
@ -439,7 +439,6 @@ static int get_omap_rng_device_details(struct omap_rng_dev *omap_rng)
|
||||||
static int omap_rng_probe(struct platform_device *pdev)
|
static int omap_rng_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct omap_rng_dev *priv;
|
struct omap_rng_dev *priv;
|
||||||
struct resource *res;
|
|
||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -456,8 +455,7 @@ static int omap_rng_probe(struct platform_device *pdev)
|
||||||
platform_set_drvdata(pdev, priv);
|
platform_set_drvdata(pdev, priv);
|
||||||
priv->dev = dev;
|
priv->dev = dev;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
priv->base = devm_platform_ioremap_resource(pdev, 0);
|
||||||
priv->base = devm_ioremap_resource(dev, res);
|
|
||||||
if (IS_ERR(priv->base)) {
|
if (IS_ERR(priv->base)) {
|
||||||
ret = PTR_ERR(priv->base);
|
ret = PTR_ERR(priv->base);
|
||||||
goto err_ioremap;
|
goto err_ioremap;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче