aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/t410
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-07-22 16:12:33 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-08-03 05:28:57 +0000
commit16fe1e0246df10fd9bac30c091b38d454d96cc89 (patch)
tree2b3f3118e9e0e4308f1420b5a465c9b8290b519a /src/mainboard/lenovo/t410
parent9333b742295a1e8eb630b2e73fcac43318e10b6a (diff)
nb/intel/ironlake: Drop `D0F0_` prefix from register names
Only some registers have such a prefix. Drop it for consistency. Change-Id: I1ef7307d10a06db8f3c1a05bd9184f21fceb9d90 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43731 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/lenovo/t410')
-rw-r--r--src/mainboard/lenovo/t410/romstage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/lenovo/t410/romstage.c b/src/mainboard/lenovo/t410/romstage.c
index 6856f5b3d9..445ef7afc0 100644
--- a/src/mainboard/lenovo/t410/romstage.c
+++ b/src/mainboard/lenovo/t410/romstage.c
@@ -32,7 +32,7 @@ static void hybrid_graphics_init(void)
early_hybrid_graphics(&igd, &peg);
/* Hide disabled devices */
- reg32 = pci_read_config32(PCI_DEV(0, 0, 0), D0F0_DEVEN);
+ reg32 = pci_read_config32(PCI_DEV(0, 0, 0), DEVEN);
reg32 &= ~(DEVEN_PEG10 | DEVEN_IGD);
if (peg)
@@ -42,9 +42,9 @@ static void hybrid_graphics_init(void)
reg32 |= DEVEN_IGD;
else
/* Disable IGD VGA decode, no GTT or GFX stolen */
- pci_write_config16(PCI_DEV(0, 0, 0), D0F0_GGC, 2);
+ pci_write_config16(PCI_DEV(0, 0, 0), GGC, 2);
- pci_write_config32(PCI_DEV(0, 0, 0), D0F0_DEVEN, reg32);
+ pci_write_config32(PCI_DEV(0, 0, 0), DEVEN, reg32);
}
void mainboard_pre_raminit(void)