From: Mauro Carvalho Chehab Date: Sat, 26 Apr 2008 17:04:10 +0000 (-0300) Subject: V4L/DVB (7752): tuner-core: add a missing \n after a debug printk X-Git-Tag: v2.6.26-rc1~352^2~26 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=397be5c4d66e6583ce3d38b0f99a56eb9818492b;p=karo-tx-linux.git V4L/DVB (7752): tuner-core: add a missing \n after a debug printk Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index 2b72e10e6b9f..24ae2bc516ab 100644 --- a/drivers/media/video/tuner-core.c +++ b/drivers/media/video/tuner-core.c @@ -730,8 +730,10 @@ static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg) struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops; struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops; - if (tuner_debug>1) + if (tuner_debug > 1) { v4l_i2c_print_ioctl(client,cmd); + printk("\n"); + } switch (cmd) { /* --- configuration --- */