Sandy/Ivy Bridge and Cougar/Panther Point: Fix names
The names were set at various times during development, but the way the code works, you might end up with the wrong name being displayed in the logs. Instead of doing magic, just display both names for each component Change-Id: I1f8ce44d156442f5f7d717e1a2b47ed1218d4527 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1413 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
b98d07813d
commit
9ca1c0af64
|
@ -511,6 +511,6 @@ static void enable_dev(device_t dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations northbridge_intel_sandybridge_ops = {
|
struct chip_operations northbridge_intel_sandybridge_ops = {
|
||||||
CHIP_NAME("Intel i7 (Sandybridge) integrated Northbridge")
|
CHIP_NAME("Intel i7 (SandyBridge/IvyBridge) integrated Northbridge")
|
||||||
.enable_dev = enable_dev,
|
.enable_dev = enable_dev,
|
||||||
};
|
};
|
||||||
|
|
|
@ -56,15 +56,3 @@ config SERIRQ_CONTINUOUS_MODE
|
||||||
operated in continuous mode.
|
operated in continuous mode.
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if SOUTHBRIDGE_INTEL_BD82X6X
|
|
||||||
config PCH_CHIP_NAME
|
|
||||||
string
|
|
||||||
default "Cougar Point"
|
|
||||||
endif
|
|
||||||
|
|
||||||
if SOUTHBRIDGE_INTEL_C216
|
|
||||||
config PCH_CHIP_NAME
|
|
||||||
string
|
|
||||||
default "Panther Point"
|
|
||||||
endif
|
|
||||||
|
|
|
@ -405,6 +405,6 @@ void pch_enable(device_t dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations southbridge_intel_bd82x6x_ops = {
|
struct chip_operations southbridge_intel_bd82x6x_ops = {
|
||||||
CHIP_NAME("Intel Series 6/7 (" CONFIG_PCH_CHIP_NAME ") Southbridge")
|
CHIP_NAME("Intel Series 6/7 (Cougar Point/Panther Point) Southbridge")
|
||||||
.enable_dev = pch_enable,
|
.enable_dev = pch_enable,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue