···40 memset(cached_bitfield, 0, sizeof cached_bitfield);
41}
4243-int eeprom_24cxx_read_byte(unsigned int address, char *c)
44{
45 int ret;
46 char byte;
···86 return 0;
87}
8889-int eeprom_24cxx_write_byte(unsigned int address, char c)
90{
91 int ret;
92 int count = 0;
···40 memset(cached_bitfield, 0, sizeof cached_bitfield);
41}
4243+static int eeprom_24cxx_read_byte(unsigned int address, char *c)
44{
45 int ret;
46 char byte;
···86 return 0;
87}
8889+static int eeprom_24cxx_write_byte(unsigned int address, char c)
90{
91 int ret;
92 int count = 0;
-1
firmware/export/eeprom_24cxx.h
···31#endif
3233void eeprom_24cxx_init(void);
34-int eeprom_24cxx_read_byte(unsigned int address, char *c);
35int eeprom_24cxx_read(unsigned char address, void *dest, int length);
36int eeprom_24cxx_write(unsigned char address, const void *src, int length);
37