V4L/DVB (9254): cx24116: Checkpatch compliance #2
cx24116: Checkpatch compliance #2 Signed-off-by: Steven Toth <stoth@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
d93356a220
commit
f11ec7d4ee
File diff suppressed because it is too large
Load Diff
|
@ -23,31 +23,32 @@
|
||||||
|
|
||||||
#include <linux/dvb/frontend.h>
|
#include <linux/dvb/frontend.h>
|
||||||
|
|
||||||
struct cx24116_config
|
struct cx24116_config {
|
||||||
{
|
|
||||||
/* the demodulator's i2c address */
|
/* the demodulator's i2c address */
|
||||||
u8 demod_address;
|
u8 demod_address;
|
||||||
|
|
||||||
/* Need to set device param for start_dma */
|
/* Need to set device param for start_dma */
|
||||||
int (*set_ts_params)(struct dvb_frontend* fe, int is_punctured);
|
int (*set_ts_params)(struct dvb_frontend *fe, int is_punctured);
|
||||||
|
|
||||||
/* Need to reset device during firmware loading */
|
/* Need to reset device during firmware loading */
|
||||||
int (*reset_device)(struct dvb_frontend* fe);
|
int (*reset_device)(struct dvb_frontend *fe);
|
||||||
|
|
||||||
/* Need to set MPEG parameters */
|
/* Need to set MPEG parameters */
|
||||||
u8 mpg_clk_pos_pol:0x02;
|
u8 mpg_clk_pos_pol:0x02;
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_DVB_CX24116) || defined(CONFIG_DVB_CX24116_MODULE)
|
#if defined(CONFIG_DVB_CX24116) || defined(CONFIG_DVB_CX24116_MODULE)
|
||||||
extern struct dvb_frontend* cx24116_attach(const struct cx24116_config* config,
|
extern struct dvb_frontend *cx24116_attach(
|
||||||
struct i2c_adapter* i2c);
|
const struct cx24116_config *config,
|
||||||
|
struct i2c_adapter *i2c);
|
||||||
#else
|
#else
|
||||||
static inline struct dvb_frontend* cx24116_attach(const struct cx24116_config* config,
|
static inline struct dvb_frontend *cx24116_attach(
|
||||||
struct i2c_adapter* i2c)
|
const struct cx24116_config *config,
|
||||||
|
struct i2c_adapter *i2c)
|
||||||
{
|
{
|
||||||
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
|
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
#endif // CONFIG_DVB_CX24116
|
#endif
|
||||||
|
|
||||||
#endif /* CX24116_H */
|
#endif /* CX24116_H */
|
||||||
|
|
Loading…
Reference in New Issue