diff options
author | Masahiro Yamada | 2020-02-28 22:04:13 +0900 |
---|---|---|
committer | Heiko Schocher | 2020-03-16 08:03:05 +0100 |
commit | ed6dd4e460bd94150dc09fce547a27e2fcca66eb (patch) | |
tree | 86236e76e8a6fb94a1ab555e663eb22bfde30cf0 /include/i2c_eeprom.h | |
parent | ba6fb2f6aca54c6555742d507290cbfaa655e623 (diff) |
misc: i2c_eeprom: remove pagewidth field from i2c_eeprom
This struct member is not used in any effective way. Remove it.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'include/i2c_eeprom.h')
-rw-r--r-- | include/i2c_eeprom.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/i2c_eeprom.h b/include/i2c_eeprom.h index b96254ae79f..cd620d519fc 100644 --- a/include/i2c_eeprom.h +++ b/include/i2c_eeprom.h @@ -16,8 +16,6 @@ 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; /* The EEPROM's capacity in bytes */ unsigned long size; }; |