|
@@ -57,7 +57,7 @@ struct tda10023_config {
|
|
|
u16 deltaf;
|
|
|
};
|
|
|
|
|
|
-#if defined(CONFIG_DVB_TDA10021) || (defined(CONFIG_DVB_TDA10021_MODULE) && defined(MODULE))
|
|
|
+#if IS_ENABLED(CONFIG_DVB_TDA10021)
|
|
|
extern struct dvb_frontend* tda10021_attach(const struct tda1002x_config* config,
|
|
|
struct i2c_adapter* i2c, u8 pwm);
|
|
|
#else
|
|
@@ -69,8 +69,7 @@ static inline struct dvb_frontend* tda10021_attach(const struct tda1002x_config*
|
|
|
}
|
|
|
#endif // CONFIG_DVB_TDA10021
|
|
|
|
|
|
-#if defined(CONFIG_DVB_TDA10023) || \
|
|
|
- (defined(CONFIG_DVB_TDA10023_MODULE) && defined(MODULE))
|
|
|
+#if IS_ENABLED(CONFIG_DVB_TDA10023)
|
|
|
extern struct dvb_frontend *tda10023_attach(
|
|
|
const struct tda10023_config *config,
|
|
|
struct i2c_adapter *i2c, u8 pwm);
|