]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/media/dvb/frontends/tda8261.h
V4L/DVB (9392): initial go at TDA8261 tuner
[mv-sheeva.git] / drivers / media / dvb / frontends / tda8261.h
1 #ifndef __TDA8261_H
2 #define __TDA8261_H
3
4 enum tda8261_step {
5         TDA8261_STEP_2000 = 0,  /* 2000 kHz */
6         TDA8261_STEP_1000,      /* 1000 kHz */
7         TDA8261_STEP_500,       /*  500 kHz */
8         TDA8261_STEP_250,       /*  250 kHz */
9         TDA8261_STEP_125        /*  125 kHz */
10 };
11
12 struct tda8261_config {
13 //      u8                      buf[16];
14         u8                      addr;
15         enum tda8261_step       step_size;
16 };
17
18 /* move out from here! */
19 static const struct tda8261_config sd1878c_config = {
20 //      .name           = "SD1878C",
21         .addr           = 0x60,
22         .step_size      = TDA8261_STEP_1000 /* kHz */
23 };
24
25 #endif// __TDA8261_H