media: tuners/rda5816: dos2unix.

This commit is contained in:
CrazyCat
2023-09-24 17:37:07 +03:00
parent d10cc89536
commit 70555a3fc3
2 changed files with 535 additions and 535 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,25 +1,25 @@
#ifndef _RDA5816_H_ #ifndef _RDA5816_H_
#define _RDA5816_H_ #define _RDA5816_H_
#include <linux/kconfig.h> #include <linux/kconfig.h>
#include <media/dvb_frontend.h> #include <media/dvb_frontend.h>
struct rda5816_config{ struct rda5816_config{
u8 i2c_adr; u8 i2c_adr;
u8 xtal;//1=27M 0=24M u8 xtal;//1=27M 0=24M
}; };
#if IS_REACHABLE(CONFIG_MEDIA_TUNER_RDA5816) #if IS_REACHABLE(CONFIG_MEDIA_TUNER_RDA5816)
extern struct dvb_frontend *rda5816_attach(struct dvb_frontend *fe, extern struct dvb_frontend *rda5816_attach(struct dvb_frontend *fe,
struct rda5816_config *cfg, struct i2c_adapter *i2c); struct rda5816_config *cfg, struct i2c_adapter *i2c);
#else #else
static inline struct dvb_frontend *rda5816_attach(struct dvb_frontend *fe, static inline struct dvb_frontend *rda5816_attach(struct dvb_frontend *fe,
struct rda5816_config *cfg, struct i2c_adapter *i2c) struct rda5816_config *cfg, 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 #endif
#endif #endif