summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/frontends/s5h1409.h
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2007-07-28 19:02:55 -0400
committerMichael Krufky <mkrufky@linuxtv.org>2007-07-28 19:02:55 -0400
commit7ed4fa0541f4467ad00247a9fb7c2f8936b533ef (patch)
tree4d8df36dfc97d4895392acdf20020ed00a4c4d57 /linux/drivers/media/dvb/frontends/s5h1409.h
parent6ca5465adfdb0a5232dd643cfcfcab959a33aa94 (diff)
downloadmediapointer-dvb-s2-7ed4fa0541f4467ad00247a9fb7c2f8936b533ef.tar.gz
mediapointer-dvb-s2-7ed4fa0541f4467ad00247a9fb7c2f8936b533ef.tar.bz2
whitespace cleanup for mt2131 and s5h1409
From: Michael Krufky <mkrufky@linuxtv.org> - trivial whitespace cleanups - add "c-basic-offset: 8" to enforce tabbing style in emacs Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/s5h1409.h')
-rw-r--r--linux/drivers/media/dvb/frontends/s5h1409.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/linux/drivers/media/dvb/frontends/s5h1409.h b/linux/drivers/media/dvb/frontends/s5h1409.h
index 6e9b9f24b..bccfd8a6f 100644
--- a/linux/drivers/media/dvb/frontends/s5h1409.h
+++ b/linux/drivers/media/dvb/frontends/s5h1409.h
@@ -19,8 +19,8 @@
*/
-#ifndef S5H1409_H
-#define S5H1409_H
+#ifndef __S5H1409_H__
+#define __S5H1409_H__
#include <linux/dvb/frontend.h>
@@ -58,11 +58,16 @@ extern struct dvb_frontend* s5h1409_attach(const struct s5h1409_config* config,
struct i2c_adapter* i2c);
#else
static inline struct dvb_frontend* s5h1409_attach(const struct s5h1409_config* config,
- struct i2c_adapter* i2c)
+ struct i2c_adapter* i2c)
{
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
return NULL;
}
-#endif // CONFIG_DVB_S5H1409
+#endif /* CONFIG_DVB_S5H1409 */
-#endif // S5H1409_H
+#endif /* __S5H1409_H__ */
+
+/*
+ * Local variables:
+ * c-basic-offset: 8
+ */