diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-07-28 19:02:55 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 21:03:40 -0400 |
commit | 3873dd041465799cfdeb642531c0ade4fb6614e5 (patch) | |
tree | a818b9878ebe6ccda2546948a1f44072aec55463 /drivers/media/dvb/frontends/s5h1409.h | |
parent | a45c92756ed60bc89528701ac512e954acd23b9e (diff) |
V4L/DVB (5950): whitespace cleanup for mt2131 and s5h1409
- trivial whitespace cleanups
- add "c-basic-offset: 8" to enforce tabbing style in emacs
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/frontends/s5h1409.h')
-rw-r--r-- | drivers/media/dvb/frontends/s5h1409.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/drivers/media/dvb/frontends/s5h1409.h b/drivers/media/dvb/frontends/s5h1409.h index 6e9b9f24b60c..bccfd8a6fbd4 100644 --- a/drivers/media/dvb/frontends/s5h1409.h +++ b/drivers/media/dvb/frontends/s5h1409.h | |||
@@ -19,8 +19,8 @@ | |||
19 | 19 | ||
20 | */ | 20 | */ |
21 | 21 | ||
22 | #ifndef S5H1409_H | 22 | #ifndef __S5H1409_H__ |
23 | #define S5H1409_H | 23 | #define __S5H1409_H__ |
24 | 24 | ||
25 | #include <linux/dvb/frontend.h> | 25 | #include <linux/dvb/frontend.h> |
26 | 26 | ||
@@ -58,11 +58,16 @@ extern struct dvb_frontend* s5h1409_attach(const struct s5h1409_config* config, | |||
58 | struct i2c_adapter* i2c); | 58 | struct i2c_adapter* i2c); |
59 | #else | 59 | #else |
60 | static inline struct dvb_frontend* s5h1409_attach(const struct s5h1409_config* config, | 60 | static inline struct dvb_frontend* s5h1409_attach(const struct s5h1409_config* config, |
61 | struct i2c_adapter* i2c) | 61 | struct i2c_adapter* i2c) |
62 | { | 62 | { |
63 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); | 63 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); |
64 | return NULL; | 64 | return NULL; |
65 | } | 65 | } |
66 | #endif // CONFIG_DVB_S5H1409 | 66 | #endif /* CONFIG_DVB_S5H1409 */ |
67 | 67 | ||
68 | #endif // S5H1409_H | 68 | #endif /* __S5H1409_H__ */ |
69 | |||
70 | /* | ||
71 | * Local variables: | ||
72 | * c-basic-offset: 8 | ||
73 | */ | ||