1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Infineon TUA9001 silicon tuner driver
4  *
5  * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
6  */
7 
8 #ifndef TUA9001_PRIV_H
9 #define TUA9001_PRIV_H
10 
11 #include "tua9001.h"
12 #include <linux/math64.h>
13 #include <linux/regmap.h>
14 
15 struct tua9001_reg_val {
16 	u8 reg;
17 	u16 val;
18 };
19 
20 struct tua9001_dev {
21 	struct dvb_frontend *fe;
22 	struct i2c_client *client;
23 	struct regmap *regmap;
24 };
25 
26 #endif
27