status_led: Kconfig migration
[platform/kernel/u-boot.git] / include / i2c_eeprom.h
index ea6c962..0452892 100644 (file)
@@ -14,6 +14,10 @@ struct i2c_eeprom_ops {
 };
 
 struct i2c_eeprom {
+       /* The EEPROM's page size in byte */
+       unsigned long pagesize;
+       /* The EEPROM's page width in bits (pagesize = 2^pagewidth) */
+       unsigned pagewidth;
 };
 
 #endif