diff options
author | Alan Cox <alan@linux.intel.com> | 2011-11-16 18:17:40 +0000 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-12-05 13:57:48 +0100 |
commit | 54b0264ec8c6e90f0413ad30e2f91c65e7844613 (patch) | |
tree | 7b88a555c6af11881a63356ba5ccb1a039c04f59 /arch/x86 | |
parent | 8e8da023f5af71662867729db5547dc54786093c (diff) | |
download | linux-3.10-54b0264ec8c6e90f0413ad30e2f91c65e7844613.tar.gz linux-3.10-54b0264ec8c6e90f0413ad30e2f91c65e7844613.tar.bz2 linux-3.10-54b0264ec8c6e90f0413ad30e2f91c65e7844613.zip |
x86/sfi: Kill the IRQ as id hack
Nothing should now need it so take it out
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/platform/mrst/mrst.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/platform/mrst/mrst.c b/arch/x86/platform/mrst/mrst.c index b1489a06a49..6a21f603bd7 100644 --- a/arch/x86/platform/mrst/mrst.c +++ b/arch/x86/platform/mrst/mrst.c @@ -802,8 +802,7 @@ static void __init sfi_handle_ipc_dev(struct sfi_device_table_entry *entry) if (mrst_has_msic()) return; - /* ID as IRQ is a hack that will go away */ - pdev = platform_device_alloc(entry->name, entry->irq); + pdev = platform_device_alloc(entry->name, 0); if (pdev == NULL) { pr_err("out of memory for SFI platform device '%s'.\n", entry->name); |