Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/61484 )
Change subject: drivers/spi/spiconsole.c: Remove unuseful 'return' in void function ......................................................................
drivers/spi/spiconsole.c: Remove unuseful 'return' in void function
Change-Id: Ie5c83f16146517d0aa37cd1975de725f57323094 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/61484 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Martin Roth martinroth@google.com --- M src/drivers/spi/spiconsole.c 1 file changed, 0 insertions(+), 3 deletions(-)
Approvals: build bot (Jenkins): Verified Martin Roth: Looks good to me, approved
diff --git a/src/drivers/spi/spiconsole.c b/src/drivers/spi/spiconsole.c index 99c6aac..1fe83f6 100644 --- a/src/drivers/spi/spiconsole.c +++ b/src/drivers/spi/spiconsole.c @@ -9,7 +9,6 @@ void spiconsole_init(void) { spi_init(); spi_setup_slave(0, 0, &slave); - return; }
/* @@ -49,6 +48,4 @@
msg.header.msg_length = 0; } - - return; }