summaryrefslogtreecommitdiffstats
path: root/src/mainboard/amd/majolica
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2022-10-25 23:30:43 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-10-26 22:09:07 +0000
commit067f7033291a31f98264404463d421196dcdc65b (patch)
tree6bf11df1e19fb5ea18177bad94728d9801b52269 /src/mainboard/amd/majolica
parentce934056df417e0928bf3287d014d202f217d875 (diff)
downloadcoreboot-067f7033291a31f98264404463d421196dcdc65b.tar.gz
coreboot-067f7033291a31f98264404463d421196dcdc65b.tar.bz2
coreboot-067f7033291a31f98264404463d421196dcdc65b.zip
mb/amd,google: unify fch_irq_routing struct instance name
Use the same fch_irq_map name in all mainboards using the Picasso, Cezanne, Mendocino and Morgana instead of using a mainboard-specific name. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I035cffb9c6c8afd6bd115831e8eed4a395e2a7fc Reviewed-on: https://review.coreboot.org/c/coreboot/+/68846 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'src/mainboard/amd/majolica')
-rw-r--r--src/mainboard/amd/majolica/mainboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/amd/majolica/mainboard.c b/src/mainboard/amd/majolica/mainboard.c
index 32b29e4fe66a..31ac5153ee21 100644
--- a/src/mainboard/amd/majolica/mainboard.c
+++ b/src/mainboard/amd/majolica/mainboard.c
@@ -28,7 +28,7 @@ static uint8_t fch_apic_routing[FCH_IRQ_ROUTING_ENTRIES];
* 8: rtc0 <- soc/amd/common/acpi/lpc.asl
* 9: acpi <- soc/amd/common/acpi/lpc.asl
*/
-static const struct fch_irq_routing majolica_fch[] = {
+static const struct fch_irq_routing fch_irq_map[] = {
{ PIRQ_A, 12, PIRQ_NC },
{ PIRQ_B, 14, PIRQ_NC },
{ PIRQ_C, 15, PIRQ_NC },
@@ -66,8 +66,8 @@ static void init_tables(void)
memset(fch_pic_routing, PIRQ_NC, sizeof(fch_pic_routing));
memset(fch_apic_routing, PIRQ_NC, sizeof(fch_apic_routing));
- for (i = 0; i < ARRAY_SIZE(majolica_fch); i++) {
- entry = majolica_fch + i;
+ for (i = 0; i < ARRAY_SIZE(fch_irq_map); i++) {
+ entry = fch_irq_map + i;
fch_pic_routing[entry->intr_index] = entry->pic_irq_num;
fch_apic_routing[entry->intr_index] = entry->apic_irq_num;
}