HAOUAS Elyes has uploaded this change for review. ( 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 --- M src/drivers/spi/spiconsole.c 1 file changed, 0 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/84/61484/1
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; }