Merge branch 'work.regset' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux/fpc-iii.git] / drivers / media / tuners / tua9001_priv.h
blob9f584327e21dc248b795487fb6f85e7394274109
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * Infineon TUA9001 silicon tuner driver
5 * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
6 */
8 #ifndef TUA9001_PRIV_H
9 #define TUA9001_PRIV_H
11 #include "tua9001.h"
12 #include <linux/math64.h>
13 #include <linux/regmap.h>
15 struct tua9001_reg_val {
16 u8 reg;
17 u16 val;
20 struct tua9001_dev {
21 struct dvb_frontend *fe;
22 struct i2c_client *client;
23 struct regmap *regmap;
26 #endif