Commit 6b88d2f1 authored by Michal Simek's avatar Michal Simek Committed by Kamal Mostafa

serial: xilinx: Use platform_get_irq to get irq description structure

commit 5c90c07b upstream.

For systems with CONFIG_SERIAL_OF_PLATFORM=y and device_type =
"serial"; property in DT of_serial.c driver maps and unmaps IRQ (because
driver probe fails). Then a driver is called but irq mapping is not
created that's why driver is failing again in again on request_irq().
Based on this use platform_get_irq() instead of platform_get_resource()
which is doing irq_desc allocation and driver itself can request IRQ.

Fix both xilinx serial drivers in the tree.
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
[ kamal: backport to 3.13-stable: context ]
Signed-off-by: default avatarKamal Mostafa <kamal@canonical.com>
parent f3aac923
...@@ -629,7 +629,8 @@ MODULE_DEVICE_TABLE(of, ulite_of_match); ...@@ -629,7 +629,8 @@ MODULE_DEVICE_TABLE(of, ulite_of_match);
static int ulite_probe(struct platform_device *pdev) static int ulite_probe(struct platform_device *pdev)
{ {
struct resource *res, *res2; struct resource *res;
int irq;
int id = pdev->id; int id = pdev->id;
#ifdef CONFIG_OF #ifdef CONFIG_OF
const __be32 *prop; const __be32 *prop;
...@@ -643,11 +644,11 @@ static int ulite_probe(struct platform_device *pdev) ...@@ -643,11 +644,11 @@ static int ulite_probe(struct platform_device *pdev)
if (!res) if (!res)
return -ENODEV; return -ENODEV;
res2 = platform_get_resource(pdev, IORESOURCE_IRQ, 0); irq = platform_get_irq(pdev, 0);
if (!res2) if (irq <= 0)
return -ENODEV; return -ENXIO;
return ulite_assign(&pdev->dev, id, res->start, res2->start); return ulite_assign(&pdev->dev, id, res->start, irq);
} }
static int ulite_remove(struct platform_device *pdev) static int ulite_remove(struct platform_device *pdev)
......
...@@ -1340,9 +1340,9 @@ static SIMPLE_DEV_PM_OPS(xuartps_dev_pm_ops, xuartps_suspend, xuartps_resume); ...@@ -1340,9 +1340,9 @@ static SIMPLE_DEV_PM_OPS(xuartps_dev_pm_ops, xuartps_suspend, xuartps_resume);
**/ **/
static int xuartps_probe(struct platform_device *pdev) static int xuartps_probe(struct platform_device *pdev)
{ {
int rc; int rc, irq;
struct uart_port *port; struct uart_port *port;
struct resource *res, *res2; struct resource *res;
struct xuartps *xuartps_data; struct xuartps *xuartps_data;
xuartps_data = devm_kzalloc(&pdev->dev, sizeof(*xuartps_data), xuartps_data = devm_kzalloc(&pdev->dev, sizeof(*xuartps_data),
...@@ -1378,9 +1378,9 @@ static int xuartps_probe(struct platform_device *pdev) ...@@ -1378,9 +1378,9 @@ static int xuartps_probe(struct platform_device *pdev)
goto err_out_clk_disable; goto err_out_clk_disable;
} }
res2 = platform_get_resource(pdev, IORESOURCE_IRQ, 0); irq = platform_get_irq(pdev, 0);
if (!res2) { if (irq <= 0) {
rc = -ENODEV; rc = -ENXIO;
goto err_out_clk_disable; goto err_out_clk_disable;
} }
...@@ -1405,7 +1405,7 @@ static int xuartps_probe(struct platform_device *pdev) ...@@ -1405,7 +1405,7 @@ static int xuartps_probe(struct platform_device *pdev)
* and triggers invocation of the config_port() entry point. * and triggers invocation of the config_port() entry point.
*/ */
port->mapbase = res->start; port->mapbase = res->start;
port->irq = res2->start; port->irq = irq;
port->dev = &pdev->dev; port->dev = &pdev->dev;
port->uartclk = clk_get_rate(xuartps_data->refclk); port->uartclk = clk_get_rate(xuartps_data->refclk);
port->private_data = xuartps_data; port->private_data = xuartps_data;
......
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