[ARM] 3550/1: OSIRIS: fix serial port map for 1:1
[linux-2.6/openmoko-kernel/knife-kernel.git] / arch / cris / arch-v32 / drivers / i2c.h
blobbfe1a13f9f35298957645ac9c7209e8e8a1e8ef4
2 #include <linux/init.h>
4 /* High level I2C actions */
5 int __init i2c_init(void);
6 int i2c_writereg(unsigned char theSlave, unsigned char theReg, unsigned char theValue);
7 unsigned char i2c_readreg(unsigned char theSlave, unsigned char theReg);
9 /* Low level I2C */
10 void i2c_start(void);
11 void i2c_stop(void);
12 void i2c_outbyte(unsigned char x);
13 unsigned char i2c_inbyte(void);
14 int i2c_getack(void);
15 void i2c_sendack(void);