ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / cris / arch-v10 / drivers / i2c.h
1 /* $Id: i2c.h,v 1.2 2002/11/18 13:16:06 starvik Exp $ */
2
3 /* High level I2C actions */
4 int i2c_writereg(unsigned char theSlave, unsigned char theReg, unsigned char theValue);
5 unsigned char i2c_readreg(unsigned char theSlave, unsigned char theReg);
6
7 /* Low level I2C */
8 void i2c_start(void);
9 void i2c_stop(void);
10 void i2c_outbyte(unsigned char x);
11 unsigned char i2c_inbyte(void);
12 int i2c_getack(void);
13 void i2c_sendack(void);
14
15
16