Move kfile interface to the io/ directory.
[bertos.git] / bertos / drv / eeprom.h
index a7baf52924a79bc8d56a3eb8a75fa82f6797c86e..5bd834af6441222c4db44c0968617ee645dd322c 100644 (file)
  *
  * \brief Driver for the 24xx16 and 24xx256 I2C EEPROMS.
  *
- * \version $Id$
- *
  * \author Stefano Fedrigo <aleph@develer.com>
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
  * $WIZ$ module_name = "eeprom"
  * $WIZ$ module_depends = "kfile", "i2c"
- * $WIZ$ module_supports = "not at91"
  */
 
 #ifndef DRV_EEPROM_H
@@ -47,7 +44,7 @@
 
 #include <cfg/compiler.h>
 
-#include <kern/kfile.h>
+#include <io/kfile.h>
 
 
 /**
  */
 typedef enum EepromType
 {
+       EEPROM_24XX08,
        EEPROM_24XX16,
        EEPROM_24XX256,
        EEPROM_24XX512,
+       EEPROM_24XX1024,
        EEPROM_CNT,
 } EepromType;