Subversion Repositories shark

Rev

Rev 170 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1063 tullio 1
 
2
/*
3
 * This program is free software; you can redistribute it and/or modify
4
 * it under the terms of the GNU General Public License as published by
5
 * the Free Software Foundation; either version 2 of the License, or
6
 * (at your option) any later version.
7
 *
8
 * This program is distributed in the hope that it will be useful,
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 * GNU General Public License for more details.
12
 *
13
 * You should have received a copy of the GNU General Public License
14
 * along with this program; if not, write to the Free Software
15
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
 *
17
 */
18
 
170 giacomo 19
/* FIXME: this temporarely, until these are included in linux/i2c-id.h */
20
 
21
/* drivers */
22
#ifndef  I2C_DRIVERID_TVMIXER
23
# define I2C_DRIVERID_TVMIXER I2C_DRIVERID_EXP0
24
#endif
25
#ifndef  I2C_DRIVERID_TVAUDIO
26
# define I2C_DRIVERID_TVAUDIO I2C_DRIVERID_EXP1
27
#endif
28
 
29
/* chips */
30
#ifndef  I2C_DRIVERID_DPL3518
31
# define I2C_DRIVERID_DPL3518 I2C_DRIVERID_EXP2
32
#endif
33
#ifndef  I2C_DRIVERID_TDA9873
34
# define I2C_DRIVERID_TDA9873 I2C_DRIVERID_EXP3
35
#endif
36
#ifndef  I2C_DRIVERID_TDA9875
37
# define I2C_DRIVERID_TDA9875 I2C_DRIVERID_EXP0+4
38
#endif
39
#ifndef  I2C_DRIVERID_PIC16C54_PV951
40
# define I2C_DRIVERID_PIC16C54_PV951 I2C_DRIVERID_EXP0+5
41
#endif
42
#ifndef  I2C_DRIVERID_TDA7432
43
# define I2C_DRIVERID_TDA7432 I2C_DRIVERID_EXP0+6
44
#endif
45
#ifndef  I2C_DRIVERID_TDA9874
46
# define I2C_DRIVERID_TDA9874 I2C_DRIVERID_EXP0+7
47
#endif
48
 
49
/* algorithms */
50
#ifndef I2C_ALGO_SAA7134
51
# define I2C_ALGO_SAA7134 0x090000
52
#endif
53