2019-05-19 13:51:31 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-09-02 00:09:21 +00:00
|
|
|
/*
|
|
|
|
* Elonics E4000 silicon tuner driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef E4000_H
|
|
|
|
#define E4000_H
|
|
|
|
|
2017-12-28 18:03:51 +00:00
|
|
|
#include <media/dvb_frontend.h>
|
2012-09-02 00:09:21 +00:00
|
|
|
|
2013-10-15 22:22:45 +00:00
|
|
|
/*
|
|
|
|
* I2C address
|
|
|
|
* 0x64, 0x65, 0x66, 0x67
|
|
|
|
*/
|
2012-09-02 00:09:21 +00:00
|
|
|
struct e4000_config {
|
|
|
|
/*
|
2013-10-15 22:22:45 +00:00
|
|
|
* frontend
|
2012-09-02 00:09:21 +00:00
|
|
|
*/
|
2013-10-15 22:22:45 +00:00
|
|
|
struct dvb_frontend *fe;
|
2012-09-02 00:09:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* clock
|
|
|
|
*/
|
|
|
|
u32 clock;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|