1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-19 23:17:53 +01:00

request irq with the platform driver name instead of bus_id which is being removed in newer kernels

SVN-Revision: 16932
This commit is contained in:
Florian Fainelli 2009-07-20 10:52:08 +00:00
parent c3aa860a11
commit 43a3f9555a

@ -335,7 +335,7 @@ static int __init bcm63xx_spi_probe(struct platform_device *pdev)
bs->fifo_size = pdata->fifo_size;
ret = request_irq(irq, bcm63xx_spi_interrupt, 0,
pdev->dev.bus_id, master);
pdev->name, master);
if (ret) {
printk(KERN_ERR PFX " unable to request irq\n");
goto out_unmap;