diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-20 10:52:08 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-20 10:52:08 +0000 |
commit | 0707b34831fd7814955857c32db500e94c07b07c (patch) | |
tree | 411df923d3eb9d986749de0b3db70d3d28d840de /target | |
parent | a95df587896aa37f477be8bb5e1cd192375f8993 (diff) |
[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
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c b/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c index 1a83a7412..bd75b8c7a 100644 --- a/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c +++ b/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c @@ -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; |