mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
drivers: gpio: sprd: use devm_platform_ioremap_resource()
Use the new helper that wraps the calls to platform_get_resource() and devm_ioremap_resource() together. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Reviewed-by: Baolin Wang <baolin.wang@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
2a7194e975
commit
94a2d42799
@ -219,7 +219,6 @@ static int sprd_gpio_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct gpio_irq_chip *irq;
|
||||
struct sprd_gpio *sprd_gpio;
|
||||
struct resource *res;
|
||||
int ret;
|
||||
|
||||
sprd_gpio = devm_kzalloc(&pdev->dev, sizeof(*sprd_gpio), GFP_KERNEL);
|
||||
@ -232,8 +231,7 @@ static int sprd_gpio_probe(struct platform_device *pdev)
|
||||
return sprd_gpio->irq;
|
||||
}
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
sprd_gpio->base = devm_ioremap_resource(&pdev->dev, res);
|
||||
sprd_gpio->base = devm_platform_ioremap_resource(pdev, 0);
|
||||
if (IS_ERR(sprd_gpio->base))
|
||||
return PTR_ERR(sprd_gpio->base);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user