diff mbox

Documentation/spi/spidev_test.c: Document -N/--no-cs and -R/--ready

Message ID 1392908503-23166-1-git-send-email-geert@linux-m68k.org (mailing list archive)
State Accepted
Commit 925d16a209b40a3e7202a4f867991fb608834d36
Headers show

Commit Message

Geert Uytterhoeven Feb. 20, 2014, 3:01 p.m. UTC
From: Geert Uytterhoeven <geert+renesas@linux-m68k.org>

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>
---
 Documentation/spi/spidev_test.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Mark Brown Feb. 22, 2014, 3:07 a.m. UTC | #1
On Thu, Feb 20, 2014 at 04:01:43PM +0100, Geert Uytterhoeven wrote:
> From: Geert Uytterhoeven <geert+renesas@linux-m68k.org>
> 
> commit b55f627feeb9d48fdbde3835e18afbc76712e49b ("spi: new spi->mode bits")
> added two new command line options without adding the respective help
> texts.

Applied, please use subject lines matching the style for the subsystem.
diff mbox

Patch

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)
 	     "  -O --cpol     clock polarity\n"
 	     "  -L --lsb      least significant bit first\n"
 	     "  -C --cs-high  chip select active high\n"
-	     "  -3 --3wire    SI/SO signals shared\n");
+	     "  -3 --3wire    SI/SO signals shared\n"
+	     "  -N --no-cs    no chip select\n"
+	     "  -R --ready    slave pulls low to pause\n");
 	exit(1);
 }