From: Christopher H. <ch...@us...> - 2002-04-27 00:55:13
|
Update of /cvsroot/blob/blob/include/blob In directory usw-pr-cvs1:/tmp/cvs-serv8216/include/blob Modified Files: i2c.h Log Message: add i2c_probe fix badge4 initialization to fetch the SDRAM info out of the SPD add i2c.c and i2c-gpio.c to lib build remove ide.c and pcmcia.c from lib build (currently broken) switch initial terminal baud to whatever is in arch header Index: i2c.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/i2c.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- i2c.h 25 Apr 2002 22:46:11 -0000 1.1 +++ i2c.h 27 Apr 2002 00:55:04 -0000 1.2 @@ -22,6 +22,7 @@ extern int i2c_read_device_bytes(struct i2c_bus *, u8, u8, u8 *, unsigned long); extern int i2c_write_device_byte_at(struct i2c_bus *, u8, u8, u8); extern int i2c_write_device_bytes_at(struct i2c_bus *, u8, u8, const u8 *, unsigned long); +extern int i2c_probe(struct i2c_bus *bus, u8); extern int i2c_scan(struct i2c_bus *bus, u8 map[256]); /* low-level operators */ |