All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] spi: spidev_test: Remove break after exit statement
@ 2020-02-13  4:16 Tiezhu Yang
  2020-02-13  4:16 ` [PATCH 2/4] spi: spidev_test: Check input_tx and input_file first after parse options Tiezhu Yang
                   ` (4 more replies)
  0 siblings, 5 replies; 19+ messages in thread
From: Tiezhu Yang @ 2020-02-13  4:16 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-spi, linux-kernel

When call print_usage() in parse_opts(), it will exit directly.
Since break is not useful after exit statement, remove it.

Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 tools/spi/spidev_test.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tools/spi/spidev_test.c b/tools/spi/spidev_test.c
index 3559e76..113b1e1 100644
--- a/tools/spi/spidev_test.c
+++ b/tools/spi/spidev_test.c
@@ -283,7 +283,6 @@ static void parse_opts(int argc, char *argv[])
 			break;
 		default:
 			print_usage(argv[0]);
-			break;
 		}
 	}
 	if (mode & SPI_LOOP) {
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2020-02-13 13:32 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-13  4:16 [PATCH 1/4] spi: spidev_test: Remove break after exit statement Tiezhu Yang
2020-02-13  4:16 ` [PATCH 2/4] spi: spidev_test: Check input_tx and input_file first after parse options Tiezhu Yang
2020-02-13  8:26   ` Geert Uytterhoeven
2020-02-13  8:26     ` Geert Uytterhoeven
2020-02-13 13:32   ` Applied "spi: spidev_test: Check input_tx and input_file first after parse options" to the spi tree Mark Brown
2020-02-13 13:32     ` Mark Brown
2020-02-13  4:16 ` [PATCH 3/4] spi: spidev_test: Use perror() only if errno is not 0 Tiezhu Yang
2020-02-13  8:27   ` Geert Uytterhoeven
2020-02-13  8:27     ` Geert Uytterhoeven
2020-02-13 13:32   ` Applied "spi: spidev_test: Use perror() only if errno is not 0" to the spi tree Mark Brown
2020-02-13 13:32     ` Mark Brown
2020-02-13  4:16 ` [PATCH 4/4] spi: spidev_test: Remove the whole "include" directory when make clean Tiezhu Yang
2020-02-13  4:16   ` Tiezhu Yang
2020-02-13 13:32   ` Applied "spi: spidev_test: Remove the whole "include" directory when make clean" to the spi tree Mark Brown
2020-02-13 13:32     ` Mark Brown
2020-02-13  8:23 ` [PATCH 1/4] spi: spidev_test: Remove break after exit statement Geert Uytterhoeven
2020-02-13  8:23   ` Geert Uytterhoeven
2020-02-13 13:32 ` Applied "spi: spidev_test: Remove break after exit statement" to the spi tree Mark Brown
2020-02-13 13:32   ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.