diff options
author | Taku Izumi <izumi.taku@jp.fujitsu.com> | 2008-10-17 00:52:51 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-10-22 19:42:35 -0400 |
commit | d389fec6a2aec1ea7d47833f36a0413a619c8c12 (patch) | |
tree | f2cb010b0ea9a995cf19bc7c43e59ad47fffe5e2 /drivers/pci/pci.c | |
parent | ab20440c376ff0454cb93904a888212d874fbb6b (diff) |
ACPI/PCI: Set support bit for MSI in support field of _OSC
Currently linux doesn't have any code to set the "MSI supported" bit in
Support Fireld of _OSC. This patch adds the code for that.
Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Taku Izumi <izumi.taku@jp.fujitsu.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r-- | drivers/pci/pci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 4db261e13e69..aee73cf251b6 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -1933,6 +1933,9 @@ static int __devinit pci_init(void) | |||
1933 | while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { | 1933 | while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { |
1934 | pci_fixup_device(pci_fixup_final, dev); | 1934 | pci_fixup_device(pci_fixup_final, dev); |
1935 | } | 1935 | } |
1936 | |||
1937 | msi_init(); | ||
1938 | |||
1936 | return 0; | 1939 | return 0; |
1937 | } | 1940 | } |
1938 | 1941 | ||