Skip to content

Commit

Permalink
V4L/DVB (6634): xc2028: error messages missing whitespace
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Chris Pascoe authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 7d58d11 commit 3157ece
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/video/tuner-xc2028.c
Original file line number Diff line number Diff line change
Expand Up @@ -928,13 +928,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;
}

Expand Down

0 comments on commit 3157ece

Please sign in to comment.