1
0
Fork 0
forked from len0rd/rockbox

Fixed prototype of i2c_write for plugins and for i2c-telechips (fix red/yellow).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17277 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2008-04-28 14:33:03 +00:00
parent c97e503a10
commit e5319e0e89
2 changed files with 2 additions and 2 deletions

View file

@ -555,7 +555,7 @@ struct plugin_api {
int (*mas_codec_readreg)(int reg);
void (*i2c_begin)(void);
void (*i2c_end)(void);
int (*i2c_write)(int address, unsigned char* buf, int count );
int (*i2c_write)(int address, const unsigned char* buf, int count );
#endif
#endif