OSDN Git Service

eeprom: at24: add support to fetch eeprom device property "size"
authorDivagar Mohandass <divagar.mohandass@intel.com>
Tue, 10 Oct 2017 06:00:36 +0000 (11:30 +0530)
committerWolfram Sang <wsa@the-dreams.de>
Tue, 17 Oct 2017 21:32:04 +0000 (23:32 +0200)
Obtain the size of the EEPROM chip from DT if the "size" property is
specified for the device.

Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Reviewed-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Divagar Mohandass <divagar.mohandass@intel.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/misc/eeprom/at24.c

index 764ff5d..2199c42 100644 (file)
@@ -570,6 +570,10 @@ static void at24_get_pdata(struct device *dev, struct at24_platform_data *chip)
        if (device_property_present(dev, "read-only"))
                chip->flags |= AT24_FLAG_READONLY;
 
+       err = device_property_read_u32(dev, "size", &val);
+       if (!err)
+               chip->byte_len = val;
+
        err = device_property_read_u32(dev, "pagesize", &val);
        if (!err) {
                chip->page_size = val;