aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/spi
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@linux-m68k.org>2014-02-20 10:01:43 -0500
committerMark Brown <broonie@linaro.org>2014-02-21 22:07:14 -0500
commit925d16a209b40a3e7202a4f867991fb608834d36 (patch)
treed82286d73ff3982b3562aac83488cb7ccbbbef20 /Documentation/spi
parent38dbfb59d1175ef458d006556061adeaa8751b72 (diff)
spi/spidev_test: Document -N/--no-cs and -R/--ready
commit b55f627feeb9d48fdbde3835e18afbc76712e49b ("spi: new spi->mode bits") added two new command line options without adding the respective help texts. Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'Documentation/spi')
-rw-r--r--Documentation/spi/spidev_test.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/spi/spidev_test.c b/Documentation/spi/spidev_test.c
index 16feda901469..efd7385e907f 100644
--- a/Documentation/spi/spidev_test.c
+++ b/Documentation/spi/spidev_test.c
@@ -81,7 +81,9 @@ static void print_usage(const char *prog)
81 " -O --cpol clock polarity\n" 81 " -O --cpol clock polarity\n"
82 " -L --lsb least significant bit first\n" 82 " -L --lsb least significant bit first\n"
83 " -C --cs-high chip select active high\n" 83 " -C --cs-high chip select active high\n"
84 " -3 --3wire SI/SO signals shared\n"); 84 " -3 --3wire SI/SO signals shared\n"
85 " -N --no-cs no chip select\n"
86 " -R --ready slave pulls low to pause\n");
85 exit(1); 87 exit(1);
86} 88}
87 89