mirror of
https://github.com/adulau/aha.git
synced 2024-12-30 20:56:23 +00:00
[SERIAL] Fix mpc52xx_uart.c
Fix copy-paste bug in mpc52xx_uart.c (pdev<->dev) Signed-off-by: Andrey Volkov <avolkov@varma-el.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
46677736be
commit
38801e2e54
1 changed files with 2 additions and 2 deletions
|
@ -725,7 +725,7 @@ mpc52xx_uart_probe(struct platform_device *dev)
|
||||||
int i, idx, ret;
|
int i, idx, ret;
|
||||||
|
|
||||||
/* Check validity & presence */
|
/* Check validity & presence */
|
||||||
idx = pdev->id;
|
idx = dev->id;
|
||||||
if (idx < 0 || idx >= MPC52xx_PSC_MAXNUM)
|
if (idx < 0 || idx >= MPC52xx_PSC_MAXNUM)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
|
@ -748,7 +748,7 @@ mpc52xx_uart_probe(struct platform_device *dev)
|
||||||
port->ops = &mpc52xx_uart_ops;
|
port->ops = &mpc52xx_uart_ops;
|
||||||
|
|
||||||
/* Search for IRQ and mapbase */
|
/* Search for IRQ and mapbase */
|
||||||
for (i=0 ; i<pdev->num_resources ; i++, res++) {
|
for (i=0 ; i<dev->num_resources ; i++, res++) {
|
||||||
if (res->flags & IORESOURCE_MEM)
|
if (res->flags & IORESOURCE_MEM)
|
||||||
port->mapbase = res->start;
|
port->mapbase = res->start;
|
||||||
else if (res->flags & IORESOURCE_IRQ)
|
else if (res->flags & IORESOURCE_IRQ)
|
||||||
|
|
Loading…
Reference in a new issue