Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756927AbaAHOjd (ORCPT ); Wed, 8 Jan 2014 09:39:33 -0500 Received: from mail-pd0-f170.google.com ([209.85.192.170]:62903 "EHLO mail-pd0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755069AbaAHOja (ORCPT ); Wed, 8 Jan 2014 09:39:30 -0500 MIME-Version: 1.0 In-Reply-To: References: <1387814889-16670-1-git-send-email-lpapp@kde.org> <1387814889-16670-2-git-send-email-lpapp@kde.org> Date: Wed, 8 Jan 2014 14:39:28 +0000 X-Google-Sender-Auth: ABQJRODsLfMc4Cyuk1ZNo3Lc7Ks Message-ID: Subject: Re: [PATCH 1/3] mfd: MAX6650/6651 support From: Laszlo Papp To: Linus Walleij Cc: Mark Brown , Samuel Ortiz , Guenter Roeck , Lee Jones , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jan 7, 2014 at 2:11 PM, Linus Walleij wrote: > On Mon, Dec 23, 2013 at 5:08 PM, Laszlo Papp wrote: > >> MAX6650/MAX6651 chip is a multi-function device with I2C busses. The >> chip includes fan-speed regulators and monitors, GPIO, and alarm. >> >> This patch is an initial release of a MAX6650/6651 MFD driver that >> supports to enable the chip with its primary I2C bus that will connect >> the hwmon, and then the gpio devices for now. >> >> Signed-off-by: Laszlo Papp > (...) >> +++ b/include/linux/mfd/max6651-private.h >> +struct max6651_dev { >> + struct device *dev; >> + struct mutex iolock; >> + >> + struct i2c_client *i2c; >> + >> + int type; >> +}; >> + >> +enum max6651_types { >> + TYPE_MAX6650, >> + TYPE_MAX6651, >> +}; >> + >> +extern int max6651_read_reg(struct i2c_client *i2c, u8 reg, u8 *dest); >> +extern int max6651_write_reg(struct i2c_client *i2c, u8 reg, u8 value); > > It looks like you're reinventing regmap. > > - In the Kconfig entry for the MFD device: > select REGMAP_I2C > > - Look in drivers/mfd/stw481x.c for an example using > > > - Look into > drivers/regulator/stw481x-vmmc.c > for an example regmap MFD spawned child cell. Oh, thanks, Linus! I will have a look. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/