#include "tda18212.h"
#include <linux/regmap.h>
struct tda18212_dev { … };
static int tda18212_set_params(struct dvb_frontend *fe)
{ … }
static int tda18212_get_if_frequency(struct dvb_frontend *fe, u32 *frequency)
{ … }
static const struct dvb_tuner_ops tda18212_tuner_ops = …;
static int tda18212_probe(struct i2c_client *client)
{ … }
static void tda18212_remove(struct i2c_client *client)
{ … }
static const struct i2c_device_id tda18212_id[] = …;
MODULE_DEVICE_TABLE(i2c, tda18212_id);
static struct i2c_driver tda18212_driver = …;
module_i2c_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;