]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[media] tc358743: use - instead of non-ascii wide-dash character
authorHans Verkuil <hverkuil@xs4all.nl>
Sat, 20 Feb 2016 08:48:23 +0000 (06:48 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Sat, 27 Feb 2016 11:14:43 +0000 (08:14 -0300)
smatch complains about non-ascii characters. It turns out that a wide-dash character
was used instead of the more common '-' character.

Replace those dashes with -.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/i2c/tc358743.c

index da7469bc6e56fa8ede646e5aa7846f5a931e044f..972e0d47259d2a8d02c045e5373eabc4385f1235 100644 (file)
@@ -1198,21 +1198,21 @@ static int tc358743_log_status(struct v4l2_subdev *sd)
 #ifdef CONFIG_VIDEO_ADV_DEBUG
 static void tc358743_print_register_map(struct v4l2_subdev *sd)
 {
-       v4l2_info(sd, "0x00000x00FF: Global Control Register\n");
-       v4l2_info(sd, "0x01000x01FF: CSI2-TX PHY Register\n");
-       v4l2_info(sd, "0x02000x03FF: CSI2-TX PPI Register\n");
-       v4l2_info(sd, "0x04000x05FF: Reserved\n");
-       v4l2_info(sd, "0x06000x06FF: CEC Register\n");
-       v4l2_info(sd, "0x07000x84FF: Reserved\n");
-       v4l2_info(sd, "0x85000x85FF: HDMIRX System Control Register\n");
-       v4l2_info(sd, "0x86000x86FF: HDMIRX Audio Control Register\n");
-       v4l2_info(sd, "0x87000x87FF: HDMIRX InfoFrame packet data Register\n");
-       v4l2_info(sd, "0x88000x88FF: HDMIRX HDCP Port Register\n");
-       v4l2_info(sd, "0x89000x89FF: HDMIRX Video Output Port & 3D Register\n");
-       v4l2_info(sd, "0x8A000x8BFF: Reserved\n");
-       v4l2_info(sd, "0x8C000x8FFF: HDMIRX EDID-RAM (1024bytes)\n");
-       v4l2_info(sd, "0x90000x90FF: HDMIRX GBD Extraction Control\n");
-       v4l2_info(sd, "0x91000x92FF: HDMIRX GBD RAM read\n");
+       v4l2_info(sd, "0x0000-0x00FF: Global Control Register\n");
+       v4l2_info(sd, "0x0100-0x01FF: CSI2-TX PHY Register\n");
+       v4l2_info(sd, "0x0200-0x03FF: CSI2-TX PPI Register\n");
+       v4l2_info(sd, "0x0400-0x05FF: Reserved\n");
+       v4l2_info(sd, "0x0600-0x06FF: CEC Register\n");
+       v4l2_info(sd, "0x0700-0x84FF: Reserved\n");
+       v4l2_info(sd, "0x8500-0x85FF: HDMIRX System Control Register\n");
+       v4l2_info(sd, "0x8600-0x86FF: HDMIRX Audio Control Register\n");
+       v4l2_info(sd, "0x8700-0x87FF: HDMIRX InfoFrame packet data Register\n");
+       v4l2_info(sd, "0x8800-0x88FF: HDMIRX HDCP Port Register\n");
+       v4l2_info(sd, "0x8900-0x89FF: HDMIRX Video Output Port & 3D Register\n");
+       v4l2_info(sd, "0x8A00-0x8BFF: Reserved\n");
+       v4l2_info(sd, "0x8C00-0x8FFF: HDMIRX EDID-RAM (1024bytes)\n");
+       v4l2_info(sd, "0x9000-0x90FF: HDMIRX GBD Extraction Control\n");
+       v4l2_info(sd, "0x9100-0x92FF: HDMIRX GBD RAM read\n");
        v4l2_info(sd, "0x9300-      : Reserved\n");
 }