Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/81430?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: mb/google/veyron_{mickey,rialto}: Remove return statement in void function ......................................................................
mb/google/veyron_{mickey,rialto}: Remove return statement in void function
Return statement is not useful in void function.
Change-Id: I8cf020de335e4da933b7bbdc27b7ac6f31afe885 Signed-off-by: Elyes Haouas ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/81430 Reviewed-by: Paul Menzel paulepanter@mailbox.org Reviewed-by: Felix Singer service+coreboot-gerrit@felixsinger.de Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/mainboard/google/veyron_mickey/mainboard.c M src/mainboard/google/veyron_rialto/mainboard.c 2 files changed, 0 insertions(+), 2 deletions(-)
Approvals: Paul Menzel: Looks good to me, but someone else must approve Felix Singer: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/mainboard/google/veyron_mickey/mainboard.c b/src/mainboard/google/veyron_mickey/mainboard.c index 3df0c49..1233248 100644 --- a/src/mainboard/google/veyron_mickey/mainboard.c +++ b/src/mainboard/google/veyron_mickey/mainboard.c @@ -92,5 +92,4 @@
void mainboard_power_on_backlight(void) { - return; } diff --git a/src/mainboard/google/veyron_rialto/mainboard.c b/src/mainboard/google/veyron_rialto/mainboard.c index faf41fa..4551515 100644 --- a/src/mainboard/google/veyron_rialto/mainboard.c +++ b/src/mainboard/google/veyron_rialto/mainboard.c @@ -98,5 +98,4 @@
void mainboard_power_on_backlight(void) { - return; }