1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 07:20:23 +03:00

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

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16932 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2009-07-20 10:52:08 +00:00
parent a95df58789
commit 0707b34831

View File

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