diff options
author | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2007-11-19 02:34:29 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:02:22 -0500 |
commit | 3157ecef3bce47df74427d6656fa8592bfe8d2d7 (patch) | |
tree | d6a9ac8a2bd50a32ce06797536ca73942443e2ef /drivers/media/video/tuner-xc2028.c | |
parent | 7d58d1117ec02f5fe22ddd03ca08fe2a8c777ea2 (diff) |
V4L/DVB (6634): xc2028: error messages missing whitespace
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 'drivers/media/video/tuner-xc2028.c')
-rw-r--r-- | drivers/media/video/tuner-xc2028.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/tuner-xc2028.c b/drivers/media/video/tuner-xc2028.c index a49a4e886897..c208f1f5e72c 100644 --- a/drivers/media/video/tuner-xc2028.c +++ b/drivers/media/video/tuner-xc2028.c | |||
@@ -928,13 +928,13 @@ void *xc2028_attach(struct dvb_frontend *fe, struct xc2028_config *cfg) | |||
928 | void *video_dev; | 928 | void *video_dev; |
929 | 929 | ||
930 | if (debug) | 930 | if (debug) |
931 | printk(KERN_DEBUG PREFIX "Xcv2028/3028 init called!\n"); | 931 | printk(KERN_DEBUG PREFIX ": Xcv2028/3028 init called!\n"); |
932 | 932 | ||
933 | if (NULL == cfg->video_dev) | 933 | if (NULL == cfg->video_dev) |
934 | return NULL; | 934 | return NULL; |
935 | 935 | ||
936 | if (!fe) { | 936 | if (!fe) { |
937 | printk(KERN_ERR PREFIX "No frontend!\n"); | 937 | printk(KERN_ERR PREFIX ": No frontend!\n"); |
938 | return NULL; | 938 | return NULL; |
939 | } | 939 | } |
940 | 940 | ||