2012-03-30 17:37:26 +08:00
|
|
|
/*
|
2015-04-16 07:26:06 +08:00
|
|
|
* Infineon TUA9001 silicon tuner driver
|
2012-03-30 17:37:26 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TUA9001_PRIV_H
|
|
|
|
#define TUA9001_PRIV_H
|
|
|
|
|
2015-04-16 07:26:06 +08:00
|
|
|
#include "tua9001.h"
|
2015-04-16 18:36:51 +08:00
|
|
|
#include <linux/math64.h>
|
2015-04-16 07:38:43 +08:00
|
|
|
#include <linux/regmap.h>
|
2015-04-16 07:26:06 +08:00
|
|
|
|
|
|
|
struct tua9001_reg_val {
|
2012-03-30 17:37:26 +08:00
|
|
|
u8 reg;
|
|
|
|
u16 val;
|
|
|
|
};
|
|
|
|
|
2015-04-16 07:26:06 +08:00
|
|
|
struct tua9001_dev {
|
2015-04-16 06:12:34 +08:00
|
|
|
struct dvb_frontend *fe;
|
2015-04-16 07:26:06 +08:00
|
|
|
struct i2c_client *client;
|
2015-04-16 07:38:43 +08:00
|
|
|
struct regmap *regmap;
|
2012-03-30 17:37:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|