diff options
author | Mario Six <mario.six@gdsys.cc> | 2018-01-26 14:43:47 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2018-01-29 07:48:58 +0100 |
commit | ab61cfb857a14c4dd90a5d11c2f3064c28d5b3a1 (patch) | |
tree | 4d756985995e0a5fe372bddf6693f670dc780e5d /drivers/mtd/cfi_flash.c | |
parent | 0cec0a12f9dba584ccf264329735819f8b04a66c (diff) |
cfi_flash: Remove return from void function
void functions don't need an explicit return at the end.
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/mtd/cfi_flash.c')
-rw-r--r-- | drivers/mtd/cfi_flash.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c index 7aa379b0d8..d16357343f 100644 --- a/drivers/mtd/cfi_flash.c +++ b/drivers/mtd/cfi_flash.c @@ -1280,7 +1280,6 @@ void flash_print_info(flash_info_t *info) #endif } putc('\n'); - return; } /*----------------------------------------------------------------------- |