Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-20 Thread Alexandre Belloni
On 20/02/2018 at 11:43:47 -0800, David Daney wrote: > On 02/20/2018 03:03 AM, Alexandre Belloni wrote: > [...] > > > > > diff --git a/drivers/rtc/rtc-isl12026.c b/drivers/rtc/rtc-isl12026.c > > > new file mode 100644 > > > index ..29e5bdf96c67 > > > --- /dev/null > > > +++

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-20 Thread Alexandre Belloni
On 20/02/2018 at 11:43:47 -0800, David Daney wrote: > On 02/20/2018 03:03 AM, Alexandre Belloni wrote: > [...] > > > > > diff --git a/drivers/rtc/rtc-isl12026.c b/drivers/rtc/rtc-isl12026.c > > > new file mode 100644 > > > index ..29e5bdf96c67 > > > --- /dev/null > > > +++

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-20 Thread David Daney
On 02/20/2018 03:03 AM, Alexandre Belloni wrote: [...] diff --git a/drivers/rtc/rtc-isl12026.c b/drivers/rtc/rtc-isl12026.c new file mode 100644 index ..29e5bdf96c67 --- /dev/null +++ b/drivers/rtc/rtc-isl12026.c @@ -0,0 +1,529 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * An I2C

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-20 Thread David Daney
On 02/20/2018 03:03 AM, Alexandre Belloni wrote: [...] diff --git a/drivers/rtc/rtc-isl12026.c b/drivers/rtc/rtc-isl12026.c new file mode 100644 index ..29e5bdf96c67 --- /dev/null +++ b/drivers/rtc/rtc-isl12026.c @@ -0,0 +1,529 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * An I2C

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-20 Thread Alexandre Belloni
Hi, On 16/02/2018 at 11:44:15 -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. >

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-20 Thread Alexandre Belloni
Hi, On 16/02/2018 at 11:44:15 -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. >

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-19 Thread Rob Herring
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

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-19 Thread Rob Herring
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

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-18 Thread Philippe Ombredanne
Hi David, On Fri, Feb 16, 2018 at 8:44 PM, 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 >

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-18 Thread Philippe Ombredanne
Hi David, On Fri, Feb 16, 2018 at 8:44 PM, 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

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-16 Thread Andy Shevchenko
On Fri, Feb 16, 2018 at 11:19 PM, David Daney wrote: > On 02/16/2018 12:13 PM, Andy Shevchenko wrote: >> On Fri, Feb 16, 2018 at 9:44 PM, David Daney >> wrote: >>> +config RTC_DRV_ISL12026 >>> + tristate "Intersil ISL12026" >> depends on

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-16 Thread Andy Shevchenko
On Fri, Feb 16, 2018 at 11:19 PM, David Daney wrote: > On 02/16/2018 12:13 PM, Andy Shevchenko wrote: >> On Fri, Feb 16, 2018 at 9:44 PM, David Daney >> wrote: >>> +config RTC_DRV_ISL12026 >>> + tristate "Intersil ISL12026" >> depends on OF > It doesn't depend on CONFIG_OF, it builds

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-16 Thread David Daney
On 02/16/2018 12:13 PM, Andy Shevchenko wrote: On Fri, Feb 16, 2018 at 9:44 PM, 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

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-16 Thread David Daney
On 02/16/2018 12:13 PM, Andy Shevchenko wrote: On Fri, Feb 16, 2018 at 9:44 PM, 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

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-16 Thread Andy Shevchenko
On Fri, Feb 16, 2018 at 9:44 PM, 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

Re: [PATCH v4] rtc: isl12026: Add driver.

2018-02-16 Thread Andy Shevchenko
On Fri, Feb 16, 2018 at 9:44 PM, 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. >

[PATCH v4] rtc: isl12026: Add driver.

2018-02-16 Thread David Daney
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

[PATCH v4] rtc: isl12026: Add driver.

2018-02-16 Thread David Daney
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 Signed-off-by: David Daney ---