1
0

[media] rtl2832: remove exported resources

Exported resources are not needed anymore as all users are using
callbacks carried via platform data. Due to that we will remove
those.

Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Este cometimento está contido em:
Antti Palosaari
2014-12-13 00:21:04 -03:00
cometido por Mauro Carvalho Chehab
ascendente 77a2e76b85
cometimento ac32ee42cc
2 ficheiros modificados com 0 adições e 198 eliminações

Ver ficheiro

@@ -21,7 +21,6 @@
#ifndef RTL2832_H
#define RTL2832_H
#include <linux/kconfig.h>
#include <linux/dvb/frontend.h>
struct rtl2832_config {
@@ -53,12 +52,6 @@ struct rtl2832_config {
struct rtl2832_platform_data {
const struct rtl2832_config *config;
/*
* frontend
* returned by driver
*/
struct dvb_frontend **dvb_frontend;
/*
*/
struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *);
@@ -67,57 +60,4 @@ struct rtl2832_platform_data {
int (*enable_slave_ts)(struct i2c_client *);
};
#if IS_ENABLED(CONFIG_DVB_RTL2832)
struct dvb_frontend *rtl2832_attach(
const struct rtl2832_config *cfg,
struct i2c_adapter *i2c
);
extern struct i2c_adapter *rtl2832_get_i2c_adapter(
struct dvb_frontend *fe
);
extern struct i2c_adapter *rtl2832_get_private_i2c_adapter(
struct dvb_frontend *fe
);
extern int rtl2832_enable_external_ts_if(
struct dvb_frontend *fe
);
#else
static inline struct dvb_frontend *rtl2832_attach(
const struct rtl2832_config *config,
struct i2c_adapter *i2c
)
{
pr_warn("%s: driver disabled by Kconfig\n", __func__);
return NULL;
}
static inline struct i2c_adapter *rtl2832_get_i2c_adapter(
struct dvb_frontend *fe
)
{
return NULL;
}
static inline struct i2c_adapter *rtl2832_get_private_i2c_adapter(
struct dvb_frontend *fe
)
{
return NULL;
}
static inline int rtl2832_enable_external_ts_if(
struct dvb_frontend *fe
)
{
return -ENODEV;
}
#endif
#endif /* RTL2832_H */