media: dvb-frontends/mn88436: dos2unix

This commit is contained in:
CrazyCat
2023-09-24 17:39:24 +03:00
parent c2b38317ce
commit 17944a4eb0

View File

@@ -1,28 +1,28 @@
#ifndef MN88436_H
#define MN88436_H
#include <linux/dvb/frontend.h>
struct mndmd_config {
// u8 slvadr;
u8 tuner_address;
// int (*tbs6704_ctl1)(struct tbs_pcie_dev *dev, int a);
// int (*tbs6704_ctl2)(struct tbs_pcie_dev *dev, int a, int b);
};
#if defined(CONFIG_DVB_MN88436) || \
(defined(CONFIG_DVB_MN88436_MODULE) && defined(MODULE))
extern struct dvb_frontend* mndmd_attach(
struct mndmd_config* config,
struct i2c_adapter* i2c);
#else
static inline struct dvb_frontend* mndmd_attach(
struct mndmd_config* config,
struct i2c_adapter* i2c)
{
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
return NULL;
}
#endif
#endif
#ifndef MN88436_H
#define MN88436_H
#include <linux/dvb/frontend.h>
struct mndmd_config {
// u8 slvadr;
u8 tuner_address;
// int (*tbs6704_ctl1)(struct tbs_pcie_dev *dev, int a);
// int (*tbs6704_ctl2)(struct tbs_pcie_dev *dev, int a, int b);
};
#if defined(CONFIG_DVB_MN88436) || \
(defined(CONFIG_DVB_MN88436_MODULE) && defined(MODULE))
extern struct dvb_frontend* mndmd_attach(
struct mndmd_config* config,
struct i2c_adapter* i2c);
#else
static inline struct dvb_frontend* mndmd_attach(
struct mndmd_config* config,
struct i2c_adapter* i2c)
{
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
return NULL;
}
#endif
#endif