aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-10-22 23:55:39 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-10-24 16:29:55 +0000
commit9d7431c848d9f8ec35d9407521164b2b5bb83bf0 (patch)
treeb6c2667470dfc7a0308a9307aa14e63ef9da6328 /src/northbridge
parent7bbf45ed3f6460b1f25f60c3d055fff604d1df00 (diff)
nb/intel/ironlake: Generalise northbridge chip name
The code is known to work on processors other than just i7's. Also, use the northbridge's name (Ironlake) in place of the CPU's (Arrandale). Change-Id: Ia33fa285b4bacd652932d2187384ca1814c9528a Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46664 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/intel/ironlake/northbridge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/ironlake/northbridge.c b/src/northbridge/intel/ironlake/northbridge.c
index 2cffa29abf..0047c2f849 100644
--- a/src/northbridge/intel/ironlake/northbridge.c
+++ b/src/northbridge/intel/ironlake/northbridge.c
@@ -225,7 +225,7 @@ static void enable_dev(struct device *dev)
}
struct chip_operations northbridge_intel_ironlake_ops = {
- CHIP_NAME("Intel i7 (Arrandale) integrated Northbridge")
+ CHIP_NAME("Intel Ironlake integrated Northbridge")
.enable_dev = enable_dev,
.init = ironlake_init,
};