Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Infineon TUA9001 silicon tuner driver
0004  *
0005  * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
0006  */
0007 
0008 #ifndef TUA9001_PRIV_H
0009 #define TUA9001_PRIV_H
0010 
0011 #include "tua9001.h"
0012 #include <linux/math64.h>
0013 #include <linux/regmap.h>
0014 
0015 struct tua9001_reg_val {
0016     u8 reg;
0017     u16 val;
0018 };
0019 
0020 struct tua9001_dev {
0021     struct dvb_frontend *fe;
0022     struct i2c_client *client;
0023     struct regmap *regmap;
0024 };
0025 
0026 #endif