Commit 9ae48bc0 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Marc Zyngier

irqchip/renesas-irqc: Add helper variable dev = &pdev->dev

The probe function uses "&pdev->dev" a lot, hence add a shorthand for
that.
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: default avatarSimon Horman <horms+renesas@verge.net.au>
Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
parent 5adb6cd1
...@@ -124,10 +124,11 @@ static irqreturn_t irqc_irq_handler(int irq, void *dev_id) ...@@ -124,10 +124,11 @@ static irqreturn_t irqc_irq_handler(int irq, void *dev_id)
static int irqc_probe(struct platform_device *pdev) static int irqc_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev;
const char *name = dev_name(dev);
struct irqc_priv *p; struct irqc_priv *p;
struct resource *io; struct resource *io;
struct resource *irq; struct resource *irq;
const char *name = dev_name(&pdev->dev);
int ret; int ret;
int k; int k;
...@@ -140,13 +141,13 @@ static int irqc_probe(struct platform_device *pdev) ...@@ -140,13 +141,13 @@ static int irqc_probe(struct platform_device *pdev)
p->pdev = pdev; p->pdev = pdev;
platform_set_drvdata(pdev, p); platform_set_drvdata(pdev, p);
pm_runtime_enable(&pdev->dev); pm_runtime_enable(dev);
pm_runtime_get_sync(&pdev->dev); pm_runtime_get_sync(dev);
/* get hold of manadatory IOMEM */ /* get hold of manadatory IOMEM */
io = platform_get_resource(pdev, IORESOURCE_MEM, 0); io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!io) { if (!io) {
dev_err(&pdev->dev, "not enough IOMEM resources\n"); dev_err(dev, "not enough IOMEM resources\n");
ret = -EINVAL; ret = -EINVAL;
goto err1; goto err1;
} }
...@@ -164,7 +165,7 @@ static int irqc_probe(struct platform_device *pdev) ...@@ -164,7 +165,7 @@ static int irqc_probe(struct platform_device *pdev)
p->number_of_irqs = k; p->number_of_irqs = k;
if (p->number_of_irqs < 1) { if (p->number_of_irqs < 1) {
dev_err(&pdev->dev, "not enough IRQ resources\n"); dev_err(dev, "not enough IRQ resources\n");
ret = -EINVAL; ret = -EINVAL;
goto err1; goto err1;
} }
...@@ -178,12 +179,11 @@ static int irqc_probe(struct platform_device *pdev) ...@@ -178,12 +179,11 @@ static int irqc_probe(struct platform_device *pdev)
p->cpu_int_base = p->iomem + IRQC_INT_CPU_BASE(0); /* SYS-SPI */ p->cpu_int_base = p->iomem + IRQC_INT_CPU_BASE(0); /* SYS-SPI */
p->irq_domain = irq_domain_add_linear(pdev->dev.of_node, p->irq_domain = irq_domain_add_linear(dev->of_node, p->number_of_irqs,
p->number_of_irqs,
&irq_generic_chip_ops, p); &irq_generic_chip_ops, p);
if (!p->irq_domain) { if (!p->irq_domain) {
ret = -ENXIO; ret = -ENXIO;
dev_err(&pdev->dev, "cannot initialize irq domain\n"); dev_err(dev, "cannot initialize irq domain\n");
goto err2; goto err2;
} }
...@@ -191,7 +191,7 @@ static int irqc_probe(struct platform_device *pdev) ...@@ -191,7 +191,7 @@ static int irqc_probe(struct platform_device *pdev)
1, name, handle_level_irq, 1, name, handle_level_irq,
0, 0, IRQ_GC_INIT_NESTED_LOCK); 0, 0, IRQ_GC_INIT_NESTED_LOCK);
if (ret) { if (ret) {
dev_err(&pdev->dev, "cannot allocate generic chip\n"); dev_err(dev, "cannot allocate generic chip\n");
goto err3; goto err3;
} }
...@@ -209,13 +209,13 @@ static int irqc_probe(struct platform_device *pdev) ...@@ -209,13 +209,13 @@ static int irqc_probe(struct platform_device *pdev)
for (k = 0; k < p->number_of_irqs; k++) { for (k = 0; k < p->number_of_irqs; k++) {
if (request_irq(p->irq[k].requested_irq, irqc_irq_handler, if (request_irq(p->irq[k].requested_irq, irqc_irq_handler,
0, name, &p->irq[k])) { 0, name, &p->irq[k])) {
dev_err(&pdev->dev, "failed to request IRQ\n"); dev_err(dev, "failed to request IRQ\n");
ret = -ENOENT; ret = -ENOENT;
goto err4; goto err4;
} }
} }
dev_info(&pdev->dev, "driving %d irqs\n", p->number_of_irqs); dev_info(dev, "driving %d irqs\n", p->number_of_irqs);
return 0; return 0;
err4: err4:
...@@ -227,8 +227,8 @@ static int irqc_probe(struct platform_device *pdev) ...@@ -227,8 +227,8 @@ static int irqc_probe(struct platform_device *pdev)
err2: err2:
iounmap(p->iomem); iounmap(p->iomem);
err1: err1:
pm_runtime_put(&pdev->dev); pm_runtime_put(dev);
pm_runtime_disable(&pdev->dev); pm_runtime_disable(dev);
kfree(p); kfree(p);
err0: err0:
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment