diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-05-24 00:12:32 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-06-04 02:39:39 -0600 |
commit | 5466983200e6f059b3af40eb17b2cd18497a869d (patch) | |
tree | 59c6886a8a56990defd3f945c51b68cc2d9aa314 /include/configs/x86-common.h | |
parent | 1dc03c2639e6768c46c1db9ddbd2177e6962408e (diff) |
x86: qemu: Make host bridge (b.d.f=0.0.0) visible
The default weak version of pci_skip_dev() in drivers/pci/pci_common.c
skips the host bridge (b.d.f = 0.0.0) which is actually the i440fx/q35
chipset for QEMU targets. Define CONFIG_PCI_CONFIG_HOST_BRIDGE to make
it visible in the PCI configuration space.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/x86-common.h')
-rw-r--r-- | include/configs/x86-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/x86-common.h b/include/configs/x86-common.h index 0c0130af8ca..1917d87ac58 100644 --- a/include/configs/x86-common.h +++ b/include/configs/x86-common.h @@ -244,6 +244,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ CONFIG_STD_DEVICES_SETTINGS \ + "pciconfighost=1\0" \ "netdev=eth0\0" \ "consoledev=ttyS0\0" \ "othbootargs=acpi=off\0" \ |