diff options
author | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2007-11-19 17:34:29 +1000 |
---|---|---|
committer | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2007-11-19 17:34:29 +1000 |
commit | b5d25e7b51cb553aa21f68791db7f938d0f5029b (patch) | |
tree | d96497c068176af725a5a6604d5c9048380444fb /linux | |
parent | a0fe483fd4a8c5397e8a6123b01e2729bf816962 (diff) | |
download | mediapointer-dvb-s2-b5d25e7b51cb553aa21f68791db7f938d0f5029b.tar.gz mediapointer-dvb-s2-b5d25e7b51cb553aa21f68791db7f938d0f5029b.tar.bz2 |
xc2028: error messages missing whitespace
From: Chris Pascoe <c.pascoe@itee.uq.edu.au>
Fix some missing spaces in errors that may be emitted during attach failure.
Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/video/tuner-xc2028.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/tuner-xc2028.c b/linux/drivers/media/video/tuner-xc2028.c index 5015db767..aef5a9170 100644 --- a/linux/drivers/media/video/tuner-xc2028.c +++ b/linux/drivers/media/video/tuner-xc2028.c @@ -950,13 +950,13 @@ void *xc2028_attach(struct dvb_frontend *fe, struct xc2028_config *cfg) void *video_dev; if (debug) - printk(KERN_DEBUG PREFIX "Xcv2028/3028 init called!\n"); + printk(KERN_DEBUG PREFIX ": Xcv2028/3028 init called!\n"); if (NULL == cfg->video_dev) return NULL; if (!fe) { - printk(KERN_ERR PREFIX "No frontend!\n"); + printk(KERN_ERR PREFIX ": No frontend!\n"); return NULL; } |