aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/tuners/e4000.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2013-03-21 15:24:09 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-03-23 08:22:06 -0400
commit9dc353c67cbe3150d3a6b293662d5a33028adec4 (patch)
tree5b5ec2847eeb5244692365f2e54e649fc41f87d4 /drivers/media/tuners/e4000.h
parent782d8b743aad7dfffa4c01e9e8b57fd35247d70a (diff)
[media] tuners: use IS_ENABLED
Instead of checking everywhere there for 3 symbols, use instead IS_ENABLED macro. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/tuners/e4000.h')
-rw-r--r--drivers/media/tuners/e4000.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/tuners/e4000.h b/drivers/media/tuners/e4000.h
index 71b1935eb3d2..3783a0bdf855 100644
--- a/drivers/media/tuners/e4000.h
+++ b/drivers/media/tuners/e4000.h
@@ -21,6 +21,7 @@
21#ifndef E4000_H 21#ifndef E4000_H
22#define E4000_H 22#define E4000_H
23 23
24#include <linux/kconfig.h>
24#include "dvb_frontend.h" 25#include "dvb_frontend.h"
25 26
26struct e4000_config { 27struct e4000_config {
@@ -36,8 +37,7 @@ struct e4000_config {
36 u32 clock; 37 u32 clock;
37}; 38};
38 39
39#if defined(CONFIG_MEDIA_TUNER_E4000) || \ 40#if IS_ENABLED(CONFIG_MEDIA_TUNER_E4000)
40 (defined(CONFIG_MEDIA_TUNER_E4000_MODULE) && defined(MODULE))
41extern struct dvb_frontend *e4000_attach(struct dvb_frontend *fe, 41extern struct dvb_frontend *e4000_attach(struct dvb_frontend *fe,
42 struct i2c_adapter *i2c, const struct e4000_config *cfg); 42 struct i2c_adapter *i2c, const struct e4000_config *cfg);
43#else 43#else