diff options
author | Juha Laiho <Juha.Laiho@iki.fi> | 2007-09-13 21:21:34 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-12 15:03:16 -0700 |
commit | 5b1ea82fa245d4be6409cdba7e522ecb0b966b3c (patch) | |
tree | c3175f694b39932fab963f4e404c324c95187be7 /arch/x86/pci | |
parent | 4904e23b6b37c748a35bb2bd14ea325d0592e671 (diff) | |
download | kernel_samsung_espresso10-5b1ea82fa245d4be6409cdba7e522ecb0b966b3c.zip kernel_samsung_espresso10-5b1ea82fa245d4be6409cdba7e522ecb0b966b3c.tar.gz kernel_samsung_espresso10-5b1ea82fa245d4be6409cdba7e522ecb0b966b3c.tar.bz2 |
PCI: i386: Compaq EVO N800c needs PCI bus renumbering
Force PCI bus renumbering for Compaq EVO N800c laptop, in order to get
the cardbus slot recognised.
Signed-off-by: Juha Laiho <Juha.Laiho@iki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch/x86/pci')
-rw-r--r-- | arch/x86/pci/common.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index 07d5223..7c4d75e 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c @@ -287,6 +287,16 @@ static struct dmi_system_id __devinitdata pciprobe_dmi_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL685c G1"), }, }, +#ifdef __i386__ + { + .callback = assign_all_busses, + .ident = "Compaq EVO N800c", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Compaq"), + DMI_MATCH(DMI_PRODUCT_NAME, "EVO N800c"), + }, + }, +#endif {} }; |