diff options
author | Devin Heitmueller <dheitmueller@kernellabs.com> | 2009-09-14 23:10:15 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-09-18 23:14:03 -0400 |
commit | cb0409ffb7fa83a9ab561fe7e551ba8f817ca148 (patch) | |
tree | a601b1bf69d19f766b16405aa16ada2096f909f2 /drivers/media/video/em28xx | |
parent | 95e6dcd1bbb98ea215ad22585743ef9e60cfa3ff (diff) |
V4L/DVB (12880): em28xx: fix codingstyle issues introduced with VBI support
Fix a few codingstyle issues introduced when I was adding the VBI support to
the em28xx driver.
Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/em28xx')
-rw-r--r-- | drivers/media/video/em28xx/em28xx-vbi.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/media/video/em28xx/em28xx-vbi.c b/drivers/media/video/em28xx/em28xx-vbi.c index 27d7e860fa59..070d8e57877e 100644 --- a/drivers/media/video/em28xx/em28xx-vbi.c +++ b/drivers/media/video/em28xx/em28xx-vbi.c | |||
@@ -29,14 +29,14 @@ | |||
29 | #include "em28xx.h" | 29 | #include "em28xx.h" |
30 | 30 | ||
31 | static unsigned int vbibufs = 5; | 31 | static unsigned int vbibufs = 5; |
32 | module_param(vbibufs,int,0644); | 32 | module_param(vbibufs, int, 0644); |
33 | MODULE_PARM_DESC(vbibufs,"number of vbi buffers, range 2-32"); | 33 | MODULE_PARM_DESC(vbibufs, "number of vbi buffers, range 2-32"); |
34 | 34 | ||
35 | static unsigned int vbi_debug; | 35 | static unsigned int vbi_debug; |
36 | module_param(vbi_debug,int,0644); | 36 | module_param(vbi_debug, int, 0644); |
37 | MODULE_PARM_DESC(vbi_debug,"enable debug messages [vbi]"); | 37 | MODULE_PARM_DESC(vbi_debug, "enable debug messages [vbi]"); |
38 | 38 | ||
39 | #define dprintk(level,fmt, arg...) if (vbi_debug >= level) \ | 39 | #define dprintk(level, fmt, arg...) if (vbi_debug >= level) \ |
40 | printk(KERN_DEBUG "%s: " fmt, dev->core->name , ## arg) | 40 | printk(KERN_DEBUG "%s: " fmt, dev->core->name , ## arg) |
41 | 41 | ||
42 | /* ------------------------------------------------------------------ */ | 42 | /* ------------------------------------------------------------------ */ |