#include <linux/module.h>
#include <linux/init.h>
#include <linux/string.h>
#include <linux/slab.h>
#include <media/dvb_frontend.h>
#include "lnbh25.h"
struct lnbh25_priv { … };
#define LNBH25_STATUS_OFL …
#define LNBH25_STATUS_VMON …
#define LNBH25_VSEL_13 …
#define LNBH25_VSEL_18 …
static int lnbh25_read_vmon(struct lnbh25_priv *priv)
{ … }
static int lnbh25_set_voltage(struct dvb_frontend *fe,
enum fe_sec_voltage voltage)
{ … }
static void lnbh25_release(struct dvb_frontend *fe)
{ … }
struct dvb_frontend *lnbh25_attach(struct dvb_frontend *fe,
struct lnbh25_config *cfg,
struct i2c_adapter *i2c)
{ … }
EXPORT_SYMBOL_GPL(…);
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;