summaryrefslogtreecommitdiff
path: root/firmware/drivers/eeprom_24cxx.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/eeprom_24cxx.c')
-rw-r--r--firmware/drivers/eeprom_24cxx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/eeprom_24cxx.c b/firmware/drivers/eeprom_24cxx.c
index 4cd50d4e3a..5d26bd8eaf 100644
--- a/firmware/drivers/eeprom_24cxx.c
+++ b/firmware/drivers/eeprom_24cxx.c
@@ -40,7 +40,7 @@ void eeprom_24cxx_init(void)
40 memset(cached_bitfield, 0, sizeof cached_bitfield); 40 memset(cached_bitfield, 0, sizeof cached_bitfield);
41} 41}
42 42
43int eeprom_24cxx_read_byte(unsigned int address, char *c) 43static int eeprom_24cxx_read_byte(unsigned int address, char *c)
44{ 44{
45 int ret; 45 int ret;
46 char byte; 46 char byte;
@@ -86,7 +86,7 @@ int eeprom_24cxx_read_byte(unsigned int address, char *c)
86 return 0; 86 return 0;
87} 87}
88 88
89int eeprom_24cxx_write_byte(unsigned int address, char c) 89static int eeprom_24cxx_write_byte(unsigned int address, char c)
90{ 90{
91 int ret; 91 int ret;
92 int count = 0; 92 int count = 0;