diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-02-09 16:05:32 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-09 08:28:48 -0800 |
commit | 72401339b545a8a0a66411c5a2486f602447d924 (patch) | |
tree | 96329afbd2037736976ff4e96236e64cd0c3d76e /drivers/usb/host/ehci-ps3.c | |
parent | ec1c620b1cb43182df5d1a08392f8d68d36cef06 (diff) | |
download | talos-obmc-linux-72401339b545a8a0a66411c5a2486f602447d924.tar.gz talos-obmc-linux-72401339b545a8a0a66411c5a2486f602447d924.zip |
[PATCH] ps3 usb missed the addition of new argument to ps3_alloc_io_irq()
Acked-by: Geoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-ps3.c')
-rw-r--r-- | drivers/usb/host/ehci-ps3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-ps3.c b/drivers/usb/host/ehci-ps3.c index 371f194a9d39..4d781a2a9807 100644 --- a/drivers/usb/host/ehci-ps3.c +++ b/drivers/usb/host/ehci-ps3.c @@ -104,7 +104,7 @@ static int ps3_ehci_sb_probe(struct ps3_system_bus_device *dev) dev_dbg(&dev->core, "%s:%d: mmio mapped_addr %lxh\n", __func__, __LINE__, dev->m_region->lpar_addr); - result = ps3_alloc_io_irq(dev->interrupt_id, &virq); + result = ps3_alloc_io_irq(PS3_BINDING_CPU_ANY, dev->interrupt_id, &virq); if (result) { dev_dbg(&dev->core, "%s:%d: ps3_construct_io_irq(%d) failed.\n", |