summaryrefslogtreecommitdiff
path: root/drivers/media/tuners/e4000.h
blob: b8f12c201ff3f1a8a94e33d244b1026be3eb0396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Elonics E4000 silicon tuner driver
 *
 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
 */

#ifndef E4000_H
#define E4000_H

#include <media/dvb_frontend.h>

/*
 * I2C address
 * 0x64, 0x65, 0x66, 0x67
 */
struct e4000_config {
	/*
	 * frontend
	 */
	struct dvb_frontend *fe;

	/*
	 * clock
	 */
	u32 clock;
};

#endif