aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/eeprom.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/eeprom.h')
-rw-r--r--tmk_core/common/eeprom.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/tmk_core/common/eeprom.h b/tmk_core/common/eeprom.h
index 8a81e7066..f5b3f0ad5 100644
--- a/tmk_core/common/eeprom.h
+++ b/tmk_core/common/eeprom.h
@@ -1,5 +1,4 @@
1#ifndef TMK_CORE_COMMON_EEPROM_H_ 1#pragma once
2#define TMK_CORE_COMMON_EEPROM_H_
3 2
4#if defined(__AVR__) && !defined(EEPROM_DRIVER) 3#if defined(__AVR__) && !defined(EEPROM_DRIVER)
5# include <avr/eeprom.h> 4# include <avr/eeprom.h>
@@ -20,5 +19,3 @@ void eeprom_update_word(uint16_t *__p, uint16_t __value);
20void eeprom_update_dword(uint32_t *__p, uint32_t __value); 19void eeprom_update_dword(uint32_t *__p, uint32_t __value);
21void eeprom_update_block(const void *__src, void *__dst, size_t __n); 20void eeprom_update_block(const void *__src, void *__dst, size_t __n);
22#endif 21#endif
23
24#endif /* TMK_CORE_COMMON_EEPROM_H_ */