From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759336Ab2EJMHx (ORCPT ); Thu, 10 May 2012 08:07:53 -0400 Received: from mail-lb0-f174.google.com ([209.85.217.174]:61859 "EHLO mail-lb0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756301Ab2EJMHu (ORCPT ); Thu, 10 May 2012 08:07:50 -0400 Date: Thu, 10 May 2012 14:07:42 +0200 From: Johan Hovold To: Samuel Ortiz Cc: Rob Landley , Richard Purdie , Jonathan Cameron , Greg Kroah-Hartman , Florian Tobias Schandinat , Arnd Bergmann , Andrew Morton , Mark Brown , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org, devel@driverdev.osuosl.org, linux-fbdev@vger.kernel.org Subject: Re: [PATCH v2 1/4] mfd: add LM3533 lighting-power core driver Message-ID: <20120510120742.GA29437@localhost> References: <1334935826-12527-1-git-send-email-jhovold@gmail.com> <1336040799-18433-1-git-send-email-jhovold@gmail.com> <1336040799-18433-2-git-send-email-jhovold@gmail.com> <20120509144218.GI1794@sortiz-mobl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120509144218.GI1794@sortiz-mobl> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, May 09, 2012 at 04:42:18PM +0200, Samuel Ortiz wrote: > Hi Johan > > On Thu, May 03, 2012 at 12:26:36PM +0200, Johan Hovold wrote: > > Add support for National Semiconductor / TI LM3533 lighting power chips. > > > > This is the core driver which provides register access over I2C and > > registers the ambient-light-sensor, LED and backlight sub-drivers. > > > > Signed-off-by: Johan Hovold > > --- > > > > v2: > > - add sysfs-ABI documentation > > - merge i2c implementation with core > > - use regmap and kill custom debugfs interface > > > > > > .../ABI/testing/sysfs-bus-i2c-devices-lm3533 | 38 + > > drivers/mfd/Kconfig | 13 + > > drivers/mfd/Makefile | 1 + > > drivers/mfd/lm3533-core.c | 717 ++++++++++++++++++++ > > drivers/mfd/lm3533-ctrlbank.c | 134 ++++ > > include/linux/mfd/lm3533.h | 89 +++ > > 6 files changed, 992 insertions(+), 0 deletions(-) > > create mode 100644 Documentation/ABI/testing/sysfs-bus-i2c-devices-lm3533 > > create mode 100644 drivers/mfd/lm3533-core.c > > create mode 100644 drivers/mfd/lm3533-ctrlbank.c > > create mode 100644 include/linux/mfd/lm3533.h > Patch applied to my for-next branch, thanks. I've been travelling for a few days and didn't have time to submit a discussed change to move two attributes to the platform data before I left. Could you please apply the following two patches on top of this one? mfd: lm3533: add boost frequency and ovp to platform data mfd: lm3533: remove boost attributes Thanks, Johan From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johan Hovold Date: Thu, 10 May 2012 12:07:42 +0000 Subject: Re: [PATCH v2 1/4] mfd: add LM3533 lighting-power core driver Message-Id: <20120510120742.GA29437@localhost> List-Id: References: <1334935826-12527-1-git-send-email-jhovold@gmail.com> <1336040799-18433-1-git-send-email-jhovold@gmail.com> <1336040799-18433-2-git-send-email-jhovold@gmail.com> <20120509144218.GI1794@sortiz-mobl> In-Reply-To: <20120509144218.GI1794@sortiz-mobl> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Samuel Ortiz Cc: Rob Landley , Richard Purdie , Jonathan Cameron , Greg Kroah-Hartman , Florian Tobias Schandinat , Arnd Bergmann , Andrew Morton , Mark Brown , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org, devel@driverdev.osuosl.org, linux-fbdev@vger.kernel.org On Wed, May 09, 2012 at 04:42:18PM +0200, Samuel Ortiz wrote: > Hi Johan > > On Thu, May 03, 2012 at 12:26:36PM +0200, Johan Hovold wrote: > > Add support for National Semiconductor / TI LM3533 lighting power chips. > > > > This is the core driver which provides register access over I2C and > > registers the ambient-light-sensor, LED and backlight sub-drivers. > > > > Signed-off-by: Johan Hovold > > --- > > > > v2: > > - add sysfs-ABI documentation > > - merge i2c implementation with core > > - use regmap and kill custom debugfs interface > > > > > > .../ABI/testing/sysfs-bus-i2c-devices-lm3533 | 38 + > > drivers/mfd/Kconfig | 13 + > > drivers/mfd/Makefile | 1 + > > drivers/mfd/lm3533-core.c | 717 ++++++++++++++++++++ > > drivers/mfd/lm3533-ctrlbank.c | 134 ++++ > > include/linux/mfd/lm3533.h | 89 +++ > > 6 files changed, 992 insertions(+), 0 deletions(-) > > create mode 100644 Documentation/ABI/testing/sysfs-bus-i2c-devices-lm3533 > > create mode 100644 drivers/mfd/lm3533-core.c > > create mode 100644 drivers/mfd/lm3533-ctrlbank.c > > create mode 100644 include/linux/mfd/lm3533.h > Patch applied to my for-next branch, thanks. I've been travelling for a few days and didn't have time to submit a discussed change to move two attributes to the platform data before I left. Could you please apply the following two patches on top of this one? mfd: lm3533: add boost frequency and ovp to platform data mfd: lm3533: remove boost attributes Thanks, Johan