diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-12-10 09:12:59 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:03:29 -0500 |
commit | 2dcf84b36c23a2c34207ab650071f9ee33d3c4a2 (patch) | |
tree | ad3cb19223ce77df967adbb7a50d3253bb270f63 /drivers/media/video/tda8290.h | |
parent | 864a6b813ab6cb69f3552553899ae443329ecfa9 (diff) |
V4L/DVB (6788): tda8290: fix codingstyle, open brace following struct on the same line
Fix codingstyle issue discovered after using new checkpatch.pl
ERROR: open brace '{' following struct go on the same line
396: FILE: linux/drivers/media/video/tda8290.h:24:
+struct tda829x_config
+{
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tda8290.h')
-rw-r--r-- | drivers/media/video/tda8290.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/video/tda8290.h b/drivers/media/video/tda8290.h index 4c547577e7ca..7bce03183d08 100644 --- a/drivers/media/video/tda8290.h +++ b/drivers/media/video/tda8290.h | |||
@@ -20,8 +20,7 @@ | |||
20 | #include <linux/i2c.h> | 20 | #include <linux/i2c.h> |
21 | #include "dvb_frontend.h" | 21 | #include "dvb_frontend.h" |
22 | 22 | ||
23 | struct tda829x_config | 23 | struct tda829x_config { |
24 | { | ||
25 | unsigned int *lna_cfg; | 24 | unsigned int *lna_cfg; |
26 | int (*tuner_callback) (void *dev, int command, int arg); | 25 | int (*tuner_callback) (void *dev, int command, int arg); |
27 | }; | 26 | }; |