Re: [PATCH v4] rtc: isl12026: Add driver.
From: Rob Herring <robh@kernel.org>
Date: 2018-02-19 20:19:00
Also in:
linux-rtc, lkml
From: Rob Herring <robh@kernel.org>
Date: 2018-02-19 20:19:00
Also in:
linux-rtc, lkml
On Fri, Feb 16, 2018 at 11:44:15AM -0800, David Daney wrote:
The ISL12026 is a combination RTC and EEPROM device with I2C interface. The standard RTC driver interface is provided. The EEPROM is accessed via the NVMEM interface via the "eeprom0" directory in the sysfs entry for the device. Reviewed-by: Andy Shevchenko <redacted> Signed-off-by: David Daney <redacted> --- Changes from v3: o Add Reviewed-by o s/dev_err/dev_warn/ in one place o Remove redundant ',' Changes from v2: o More code cleanups suggested by reviewers. Changes from v1: o Fixed device tree bindings document example. o Use RTC_NVMEM facility for eeprom support. o Small code cleanups suggested by reviewers. .../devicetree/bindings/rtc/isil,isl12026.txt | 28 ++
Reviewed-by: Rob Herring <robh@kernel.org>
drivers/rtc/Kconfig | 9 + drivers/rtc/Makefile | 1 + drivers/rtc/rtc-isl12026.c | 529 +++++++++++++++++++++ 4 files changed, 567 insertions(+) create mode 100644 Documentation/devicetree/bindings/rtc/isil,isl12026.txt create mode 100644 drivers/rtc/rtc-isl12026.c