diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-11-27 11:03:20 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-11-27 11:03:20 +0000 |
commit | 4638c924f0e0ceb150956acead08b97949074e8e (patch) | |
tree | f6d80482f799d8f7273772e28114b786726a7e8c /src/mainboard/asus | |
parent | 13250d13f726b3ecc54ae39deabb7b1e7372918a (diff) |
Make newconfig and kconfig agree on MAINBOARD_PCI_SUBSYSTEM_{VENDOR,DEVICE}_ID
Usually, this means adding values to Kconfig, but in a few cases, adding values
to newconfig, too (which doesn't hurt).
Also really hook up tyan/s2850 and tyan/s2875 to kconfig, and have them still
build.
Trivial and stupid kconfig changes, just lots of them.
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4959 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/asus')
-rw-r--r-- | src/mainboard/asus/a8n_e/Kconfig | 11 | ||||
-rw-r--r-- | src/mainboard/asus/a8v-e_se/Kconfig | 6 | ||||
-rw-r--r-- | src/mainboard/asus/m2v-mx_se/Kconfig | 5 |
3 files changed, 22 insertions, 0 deletions
diff --git a/src/mainboard/asus/a8n_e/Kconfig b/src/mainboard/asus/a8n_e/Kconfig index aa2865e11e..b342fc1dbe 100644 --- a/src/mainboard/asus/a8n_e/Kconfig +++ b/src/mainboard/asus/a8n_e/Kconfig @@ -103,3 +103,14 @@ config IRQ_SLOT_COUNT int default 13 depends on BOARD_ASUS_A8N_E + +config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID + hex + default 0x1043 + depends on BOARD_ASUS_A8N_E + +config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID + hex + default 0x815a + depends on BOARD_ASUS_A8N_E + diff --git a/src/mainboard/asus/a8v-e_se/Kconfig b/src/mainboard/asus/a8v-e_se/Kconfig index a371c3b580..99196c5303 100644 --- a/src/mainboard/asus/a8v-e_se/Kconfig +++ b/src/mainboard/asus/a8v-e_se/Kconfig @@ -103,3 +103,9 @@ config IRQ_SLOT_COUNT int default 13 depends on BOARD_ASUS_A8V_E_SE + +config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID + hex + default 0x1043 + depends on BOARD_ASUS_A8V_E_SE + diff --git a/src/mainboard/asus/m2v-mx_se/Kconfig b/src/mainboard/asus/m2v-mx_se/Kconfig index dcb9fc43e3..3e687ee717 100644 --- a/src/mainboard/asus/m2v-mx_se/Kconfig +++ b/src/mainboard/asus/m2v-mx_se/Kconfig @@ -111,3 +111,8 @@ config HT_CHAIN_END_UNITID_BASE default 0x20 depends on BOARD_ASUS_M2V_MX_SE +config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID + hex + default 0x1043 + depends on BOARD_ASUS_M2V_MX_SE + |