diff mbox series

[1/2] media-ctl: fix ycbcr property in help description

Message ID 20201027134922.30321-1-m.cichy@pengutronix.de (mailing list archive)
State New, archived
Headers show
Series [1/2] media-ctl: fix ycbcr property in help description | expand

Commit Message

Marian Cichy Oct. 27, 2020, 1:49 p.m. UTC
the help description in media-ctl claims that the
ycbcr property in v4l2-mbusfmt is called 'ycbcr-enc',
which will lead to an EINVAL when used as the property
is actually called 'ycbcr'.

Signed-off-by: Marian Cichy <m.cichy@pengutronix.de>
---
 utils/media-ctl/options.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/utils/media-ctl/options.c b/utils/media-ctl/options.c
index fb923775..fe79af10 100644
--- a/utils/media-ctl/options.c
+++ b/utils/media-ctl/options.c
@@ -78,7 +78,7 @@  static void usage(const char *argv0)
 	printf("\tv4l2-property   = v4l2-mbusfmt | v4l2-crop | v4l2-interval\n");
 	printf("\t                | v4l2-compose | v4l2-interval ;\n");
 	printf("\tv4l2-mbusfmt    = 'fmt:' fcc '/' size ; { 'field:' v4l2-field ; } { 'colorspace:' v4l2-colorspace ; }\n");
-	printf("\t                   { 'xfer:' v4l2-xfer-func ; } { 'ycbcr-enc:' v4l2-ycbcr-enc-func ; }\n");
+	printf("\t                   { 'xfer:' v4l2-xfer-func ; } { 'ycbcr:' v4l2-ycbcr-enc-func ; }\n");
 	printf("\t                   { 'quantization:' v4l2-quant ; }\n");
 	printf("\tv4l2-crop       = 'crop:' rectangle ;\n");
 	printf("\tv4l2-compose    = 'compose:' rectangle ;\n");