diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2006-11-05 18:50:49 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2006-11-05 18:50:49 +0000 |
commit | a7aa29b9436e1c3ddf367713720bc1e74667a1d4 (patch) | |
tree | 5058382cd3c3aa96126cfed63e787ac20d9b2754 /src/mainboard/iwill | |
parent | bdb50fe40a3b58993cecf91929a75e68a7408960 (diff) | |
download | coreboot-a7aa29b9436e1c3ddf367713720bc1e74667a1d4.tar.xz |
Use the canonical name of the vendors/devices and the
same format for all CHIP_NAME() entries in LinuxBIOS (Closes #20).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@linuxbios.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2490 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/iwill')
-rw-r--r-- | src/mainboard/iwill/dk8_htx/Options.lb | 2 | ||||
-rw-r--r-- | src/mainboard/iwill/dk8_htx/mainboard.c | 2 | ||||
-rw-r--r-- | src/mainboard/iwill/dk8s2/mainboard.c | 2 | ||||
-rw-r--r-- | src/mainboard/iwill/dk8x/mainboard.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/iwill/dk8_htx/Options.lb b/src/mainboard/iwill/dk8_htx/Options.lb index 0387b5ac4c..993c01183f 100644 --- a/src/mainboard/iwill/dk8_htx/Options.lb +++ b/src/mainboard/iwill/dk8_htx/Options.lb @@ -230,7 +230,7 @@ default CONFIG_IOAPIC=1 ## Clean up the motherboard id strings ## default MAINBOARD_PART_NUMBER="dk8_htx" -default MAINBOARD_VENDOR="iwill" +default MAINBOARD_VENDOR="IWILL" default MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID=0x1022 default MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID=0x2b80 diff --git a/src/mainboard/iwill/dk8_htx/mainboard.c b/src/mainboard/iwill/dk8_htx/mainboard.c index c49af62767..01cbe494a8 100644 --- a/src/mainboard/iwill/dk8_htx/mainboard.c +++ b/src/mainboard/iwill/dk8_htx/mainboard.c @@ -3,7 +3,7 @@ #if CONFIG_CHIP_NAME == 1 struct chip_operations mainboard_iwill_dk8_htx_ops = { - CHIP_NAME("IWILL DK8-HTX mainboard") + CHIP_NAME("IWILL DK8-HTX Mainboard") }; #endif diff --git a/src/mainboard/iwill/dk8s2/mainboard.c b/src/mainboard/iwill/dk8s2/mainboard.c index 4b7a1ecdcc..b51ef18bad 100644 --- a/src/mainboard/iwill/dk8s2/mainboard.c +++ b/src/mainboard/iwill/dk8s2/mainboard.c @@ -2,6 +2,6 @@ #include "chip.h" struct chip_operations mainboard_iwill_dk8s2_ops = { - CHIP_NAME("IWILL DK8S2 mainboard") + CHIP_NAME("IWILL DK8S2 Mainboard") }; diff --git a/src/mainboard/iwill/dk8x/mainboard.c b/src/mainboard/iwill/dk8x/mainboard.c index 0e8a361539..18cb2b5b4f 100644 --- a/src/mainboard/iwill/dk8x/mainboard.c +++ b/src/mainboard/iwill/dk8x/mainboard.c @@ -2,6 +2,6 @@ #include "chip.h" struct chip_operations mainboard_iwill_dk8x_ops = { - CHIP_NAME("IWILL DK8X mainboard") + CHIP_NAME("IWILL DK8X Mainboard") }; |