Commit 6919695f authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Mauro Carvalho Chehab

media: ov2740: Add missed \n to the end of the messages

Add missed \n to the end of the messages.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: default avatarBingbu Cao <bingbu.cao@intel.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent a55ae53c
...@@ -433,7 +433,7 @@ static int ov2740_write_reg_list(struct ov2740 *ov2740, ...@@ -433,7 +433,7 @@ static int ov2740_write_reg_list(struct ov2740 *ov2740,
r_list->regs[i].val); r_list->regs[i].val);
if (ret) { if (ret) {
dev_err_ratelimited(&client->dev, dev_err_ratelimited(&client->dev,
"write reg 0x%4.4x return err = %d", "write reg 0x%4.4x return err = %d\n",
r_list->regs[i].address, ret); r_list->regs[i].address, ret);
return ret; return ret;
} }
...@@ -456,7 +456,7 @@ static int ov2740_identify_module(struct ov2740 *ov2740) ...@@ -456,7 +456,7 @@ static int ov2740_identify_module(struct ov2740 *ov2740)
return ret; return ret;
if (val != OV2740_CHIP_ID) { if (val != OV2740_CHIP_ID) {
dev_err(&client->dev, "chip id mismatch: %x!=%x", dev_err(&client->dev, "chip id mismatch: %x != %x\n",
OV2740_CHIP_ID, val); OV2740_CHIP_ID, val);
return -ENXIO; return -ENXIO;
} }
...@@ -754,14 +754,14 @@ static int ov2740_start_streaming(struct ov2740 *ov2740) ...@@ -754,14 +754,14 @@ static int ov2740_start_streaming(struct ov2740 *ov2740)
reg_list = &link_freq_configs[link_freq_index].reg_list; reg_list = &link_freq_configs[link_freq_index].reg_list;
ret = ov2740_write_reg_list(ov2740, reg_list); ret = ov2740_write_reg_list(ov2740, reg_list);
if (ret) { if (ret) {
dev_err(&client->dev, "failed to set plls"); dev_err(&client->dev, "failed to set plls\n");
return ret; return ret;
} }
reg_list = &ov2740->cur_mode->reg_list; reg_list = &ov2740->cur_mode->reg_list;
ret = ov2740_write_reg_list(ov2740, reg_list); ret = ov2740_write_reg_list(ov2740, reg_list);
if (ret) { if (ret) {
dev_err(&client->dev, "failed to set mode"); dev_err(&client->dev, "failed to set mode\n");
return ret; return ret;
} }
...@@ -772,7 +772,7 @@ static int ov2740_start_streaming(struct ov2740 *ov2740) ...@@ -772,7 +772,7 @@ static int ov2740_start_streaming(struct ov2740 *ov2740)
ret = ov2740_write_reg(ov2740, OV2740_REG_MODE_SELECT, 1, ret = ov2740_write_reg(ov2740, OV2740_REG_MODE_SELECT, 1,
OV2740_MODE_STREAMING); OV2740_MODE_STREAMING);
if (ret) if (ret)
dev_err(&client->dev, "failed to start streaming"); dev_err(&client->dev, "failed to start streaming\n");
return ret; return ret;
} }
...@@ -783,7 +783,7 @@ static void ov2740_stop_streaming(struct ov2740 *ov2740) ...@@ -783,7 +783,7 @@ static void ov2740_stop_streaming(struct ov2740 *ov2740)
if (ov2740_write_reg(ov2740, OV2740_REG_MODE_SELECT, 1, if (ov2740_write_reg(ov2740, OV2740_REG_MODE_SELECT, 1,
OV2740_MODE_STANDBY)) OV2740_MODE_STANDBY))
dev_err(&client->dev, "failed to stop streaming"); dev_err(&client->dev, "failed to stop streaming\n");
} }
static int ov2740_set_stream(struct v4l2_subdev *sd, int enable) static int ov2740_set_stream(struct v4l2_subdev *sd, int enable)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment