Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/46664 )
Change subject: nb/intel/ironlake: Generalise northbridge chip name ......................................................................
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 --- M src/northbridge/intel/ironlake/northbridge.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/64/46664/1
diff --git a/src/northbridge/intel/ironlake/northbridge.c b/src/northbridge/intel/ironlake/northbridge.c index 2cffa29..0047c2f 100644 --- a/src/northbridge/intel/ironlake/northbridge.c +++ b/src/northbridge/intel/ironlake/northbridge.c @@ -225,7 +225,7 @@ }
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, };