]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[media] tvp5150: Fix device ID kernel log message
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Mon, 26 May 2014 19:28:31 +0000 (16:28 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Tue, 22 Jul 2014 12:59:05 +0000 (09:59 -0300)
X-Patchwork-Delegate: mchehab@redhat.com
The driver mistakenly prints the ROM version instead of the device ID to
the kernel log when detecting the chip. Fix it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/i2c/tvp5150.c

index a9121254e37a35792a36be6e5f4ff9655cd3b576..937e48b3b734e24503bba3b0f4ca26aa02e7a64f 100644 (file)
@@ -1148,10 +1148,10 @@ static int tvp5150_probe(struct i2c_client *c,
                /* Is TVP5150A */
                if (tvp5150_id[2] == 3 || tvp5150_id[3] == 0x21) {
                        v4l2_info(sd, "tvp%02x%02xa detected.\n",
-                                 tvp5150_id[2], tvp5150_id[3]);
+                                 tvp5150_id[0], tvp5150_id[1]);
                } else {
                        v4l2_info(sd, "*** unknown tvp%02x%02x chip detected.\n",
-                                 tvp5150_id[2], tvp5150_id[3]);
+                                 tvp5150_id[0], tvp5150_id[1]);
                        v4l2_info(sd, "*** Rom ver is %d.%d\n",
                                  tvp5150_id[2], tvp5150_id[3]);
                }