Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/54945 )
Change subject: mb/siemens/mc_apl1: Move gpio.c from baseboard to mc_apl1 ......................................................................
mb/siemens/mc_apl1: Move gpio.c from baseboard to mc_apl1
Variant mc_apl1 is the only one that uses gpio.c from baseboard. For this reason, gpio.c is moved from baseboard to mc_apl1.
Change-Id: Ie2ba8181dfe887df9abbbd648f2cbdc6ffc65530 Signed-off-by: Mario Scheithauer mario.scheithauer@siemens.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/54945 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Paul Menzel paulepanter@mailbox.org Reviewed-by: Werner Zeh werner.zeh@siemens.com Reviewed-by: Michael Niewöhner foss@mniewoehner.de --- M src/mainboard/siemens/mc_apl1/variants/baseboard/Makefile.inc M src/mainboard/siemens/mc_apl1/variants/mc_apl1/Makefile.inc R src/mainboard/siemens/mc_apl1/variants/mc_apl1/gpio.c 3 files changed, 3 insertions(+), 3 deletions(-)
Approvals: build bot (Jenkins): Verified Paul Menzel: Looks good to me, but someone else must approve Werner Zeh: Looks good to me, approved Michael Niewöhner: Looks good to me, approved
diff --git a/src/mainboard/siemens/mc_apl1/variants/baseboard/Makefile.inc b/src/mainboard/siemens/mc_apl1/variants/baseboard/Makefile.inc index 1d38b77..e553581 100644 --- a/src/mainboard/siemens/mc_apl1/variants/baseboard/Makefile.inc +++ b/src/mainboard/siemens/mc_apl1/variants/baseboard/Makefile.inc @@ -1,5 +1,2 @@ -bootblock-y += gpio.c
romstage-y += memory.c - -ramstage-y += gpio.c diff --git a/src/mainboard/siemens/mc_apl1/variants/mc_apl1/Makefile.inc b/src/mainboard/siemens/mc_apl1/variants/mc_apl1/Makefile.inc index 81633a1..3629aca 100644 --- a/src/mainboard/siemens/mc_apl1/variants/mc_apl1/Makefile.inc +++ b/src/mainboard/siemens/mc_apl1/variants/mc_apl1/Makefile.inc @@ -1,2 +1,5 @@ +bootblock-y += gpio.c + +ramstage-y += gpio.c ramstage-y += mainboard.c ramstage-y += lcd_panel.c diff --git a/src/mainboard/siemens/mc_apl1/variants/baseboard/gpio.c b/src/mainboard/siemens/mc_apl1/variants/mc_apl1/gpio.c similarity index 100% rename from src/mainboard/siemens/mc_apl1/variants/baseboard/gpio.c rename to src/mainboard/siemens/mc_apl1/variants/mc_apl1/gpio.c