diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-07-20 10:52:08 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-07-20 10:52:08 +0000 |
commit | 43a3f9555ac4f73137d1d0ee28a9a88289be6938 (patch) | |
tree | 21f265401b3ac24a0f2ec924c9bba606f4dac721 /target/linux/brcm63xx | |
parent | c3aa860a1157a5c8dbf0be1f73ada73ec4894572 (diff) | |
download | upstream-43a3f9555ac4f73137d1d0ee28a9a88289be6938.tar.gz upstream-43a3f9555ac4f73137d1d0ee28a9a88289be6938.tar.bz2 upstream-43a3f9555ac4f73137d1d0ee28a9a88289be6938.zip |
request irq with the platform driver name instead of bus_id which is being removed in newer kernels
SVN-Revision: 16932
Diffstat (limited to 'target/linux/brcm63xx')
-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 1a83a74121..bd75b8c7af 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; |