aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/sandybridge/northbridge.c
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-07-25 16:10:36 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-08-07 01:05:47 +0200
commit9ca1c0af64eeec013e3b4997fb86d334101c7f47 (patch)
tree5877547bc305f68400574c05840e9dbe44deec41 /src/northbridge/intel/sandybridge/northbridge.c
parentb98d07813d39321e09a18233a565a5fe22944537 (diff)
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>
Diffstat (limited to 'src/northbridge/intel/sandybridge/northbridge.c')
-rw-r--r--src/northbridge/intel/sandybridge/northbridge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/sandybridge/northbridge.c b/src/northbridge/intel/sandybridge/northbridge.c
index b447d52dab..fb0b4cbc6e 100644
--- a/src/northbridge/intel/sandybridge/northbridge.c
+++ b/src/northbridge/intel/sandybridge/northbridge.c
@@ -511,6 +511,6 @@ static void enable_dev(device_t dev)
}
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,
};