One of the identation blocks is wrong. Fix it.

While here, replace pr_info by pr_debug inside such block and
add the function name to the print messages, as otherwise they
will not help much.

Signed-off-by: Mauro Carvalho Chehab <mche...@osg.samsung.com>

diff --git a/drivers/media/usb/cx231xx/cx231xx-avcore.c 
b/drivers/media/usb/cx231xx/cx231xx-avcore.c
index 9185b05b4fbe..036ffdde6e89 100644
--- a/drivers/media/usb/cx231xx/cx231xx-avcore.c
+++ b/drivers/media/usb/cx231xx/cx231xx-avcore.c
@@ -2534,34 +2534,33 @@ int cx231xx_initialize_stream_xfer(struct cx231xx *dev, 
u32 media_type)
                        break;
 
                case TS1_serial_mode:
-                       pr_info("%s: set ts1 registers", __func__);
+                       pr_debug("%s: set ts1 registers", __func__);
 
-               if (dev->board.has_417) {
-                       pr_info(" MPEG\n");
-                       value &= 0xFFFFFFFC;
-                       value |= 0x3;
+                       if (dev->board.has_417) {
+                               pr_debug("%s: MPEG\n", __func__);
+                               value &= 0xFFFFFFFC;
+                               value |= 0x3;
 
-                       status = cx231xx_mode_register(dev, TS_MODE_REG, value);
+                               status = cx231xx_mode_register(dev, 
TS_MODE_REG, value);
 
-                       val[0] = 0x04;
-                       val[1] = 0xA3;
-                       val[2] = 0x3B;
-                       val[3] = 0x00;
-                       status = cx231xx_write_ctrl_reg(dev, VRT_SET_REGISTER,
-                                TS1_CFG_REG, val, 4);
+                               val[0] = 0x04;
+                               val[1] = 0xA3;
+                               val[2] = 0x3B;
+                               val[3] = 0x00;
+                               status = cx231xx_write_ctrl_reg(dev, 
VRT_SET_REGISTER,
+                                        TS1_CFG_REG, val, 4);
 
-                       val[0] = 0x00;
-                       val[1] = 0x08;
-                       val[2] = 0x00;
-                       val[3] = 0x08;
-                       status = cx231xx_write_ctrl_reg(dev, VRT_SET_REGISTER,
-                                TS1_LENGTH_REG, val, 4);
-
-               } else {
-                       pr_info(" BDA\n");
-                       status = cx231xx_mode_register(dev, TS_MODE_REG, 0x101);
-                       status = cx231xx_mode_register(dev, TS1_CFG_REG, 0x010);
-               }
+                               val[0] = 0x00;
+                               val[1] = 0x08;
+                               val[2] = 0x00;
+                               val[3] = 0x08;
+                               status = cx231xx_write_ctrl_reg(dev, 
VRT_SET_REGISTER,
+                                        TS1_LENGTH_REG, val, 4);
+                       } else {
+                               pr_debug("%s: BDA\n", __func__);
+                               status = cx231xx_mode_register(dev, 
TS_MODE_REG, 0x101);
+                               status = cx231xx_mode_register(dev, 
TS1_CFG_REG, 0x010);
+                       }
                        break;
 
                case TS1_parallel_mode:
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to