blob: b8d8e37b045b2475f6d46815f3d3cac72113ea58 [file] [log] [blame]
Manu Abraham00360202007-09-22 13:30:09 -03001#ifndef __TDA8261_H
2#define __TDA8261_H
3
4enum 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
12struct tda8261_config {
13// u8 buf[16];
14 u8 addr;
15 enum tda8261_step step_size;
16};
17
18/* move out from here! */
19static 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