repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git]
/
drivers
/
media
/
tuners
/
e4000.h
blob
b8f12c201ff3f1a8a94e33d244b1026be3eb0396
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
* Elonics E4000 silicon tuner driver
4
*
5
* Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
6
*/
7
8
#ifndef E4000_H
9
#define E4000_H
10
11
#include <media/dvb_frontend.h>
12
13
/*
14
* I2C address
15
* 0x64, 0x65, 0x66, 0x67
16
*/
17
struct
e4000_config
{
18
/*
19
* frontend
20
*/
21
struct
dvb_frontend
*
fe
;
22
23
/*
24
* clock
25
*/
26
u32 clock
;
27
};
28
29
#endif