aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2024-03-23 11:47:40 +0100
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2024-03-24 18:53:06 +0000
commitc47fa32cb1335fc50b1a6a0485d03a36a7f559b4 (patch)
tree29391277f3c943bd717a0bd72830f289c8ddfe78 /src
parentabf9c218f0b1fa4f734925f1b8bc754f9cee9023 (diff)
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>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/google/veyron_mickey/mainboard.c1
-rw-r--r--src/mainboard/google/veyron_rialto/mainboard.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/mainboard/google/veyron_mickey/mainboard.c b/src/mainboard/google/veyron_mickey/mainboard.c
index 3df0c492aa..1233248613 100644
--- a/src/mainboard/google/veyron_mickey/mainboard.c
+++ b/src/mainboard/google/veyron_mickey/mainboard.c
@@ -92,5 +92,4 @@ void lb_board(struct lb_header *header)
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 faf41fa48e..45515159b9 100644
--- a/src/mainboard/google/veyron_rialto/mainboard.c
+++ b/src/mainboard/google/veyron_rialto/mainboard.c
@@ -98,5 +98,4 @@ void lb_board(struct lb_header *header)
void mainboard_power_on_backlight(void)
{
- return;
}