drivers: gpio: octeon: 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> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
123ac0e535
commit
037ae5bc37
|
@ -82,7 +82,6 @@ static int octeon_gpio_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct octeon_gpio *gpio;
|
struct octeon_gpio *gpio;
|
||||||
struct gpio_chip *chip;
|
struct gpio_chip *chip;
|
||||||
struct resource *res_mem;
|
|
||||||
void __iomem *reg_base;
|
void __iomem *reg_base;
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
||||||
|
@ -91,8 +90,7 @@ static int octeon_gpio_probe(struct platform_device *pdev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
chip = &gpio->chip;
|
chip = &gpio->chip;
|
||||||
|
|
||||||
res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
reg_base = devm_platform_ioremap_resource(pdev, 0);
|
||||||
reg_base = devm_ioremap_resource(&pdev->dev, res_mem);
|
|
||||||
if (IS_ERR(reg_base))
|
if (IS_ERR(reg_base))
|
||||||
return PTR_ERR(reg_base);
|
return PTR_ERR(reg_base);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user