Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932600AbdHVK1S (ORCPT ); Tue, 22 Aug 2017 06:27:18 -0400 Received: from mx2.suse.de ([195.135.220.15]:52369 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S932352AbdHVK1Q (ORCPT ); Tue, 22 Aug 2017 06:27:16 -0400 Date: Tue, 22 Aug 2017 12:27:14 +0200 Message-ID: From: Takashi Iwai To: Andy Shevchenko Cc: linux-kernel@vger.kernel.org, Lee Jones , Dmitry Torokhov , "Rafael J . Wysocki" , Mika Westerberg , Johannes Stezenbach , linux-input@vger.kernel.org, linux-acpi@vger.kernel.org Subject: Re: [PATCH 1/3] mfd: Add support for Cherry Trail Dollar Cove TI PMIC In-Reply-To: <1503394665.25945.43.camel@linux.intel.com> References: <20170822055710.26515-1-tiwai@suse.de> <20170822055710.26515-2-tiwai@suse.de> <1503394665.25945.43.camel@linux.intel.com> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/25.2 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1611 Lines: 59 On Tue, 22 Aug 2017 11:37:45 +0200, Andy Shevchenko wrote: > > On Tue, 2017-08-22 at 07:57 +0200, Takashi Iwai wrote: > > This patch adds the MFD driver for Dollar Cove TI PMIC (ACPI INT33F5) > > that is found on some Intel Cherry Trail devices. > > The driver is based on the original work by Intel, found at: > >   https://github.com/01org/ProductionKernelQuilts > > > > This is a minimal version for adding the basic resources.  Currently, > > only ACPI PMIC opregion and the external power-button are used. > > Overall looks good. Few comments below. > > I hope Hans de Goede had been involved somehow to this. He did enormous > work to examine all this PMIC/ACPI/I2C stuff on CHT platforms. Sure, he was of a great help, although he didn't touch directly about these codes. > > +#include > > +#include > > +#include > > +#include > > +#include > > +#include > > +#include > > +#include > > Alphabetical order? OK, will rearrange. Also, gpio stuff was removed from this version, so it's superfluous. Will rip off. > > +static const struct i2c_device_id dc_ti_i2c_id[] = { > > + { } > > +}; > > No need anymore. Moreover, you already are using ->probe_new(). OK. > > +static struct i2c_driver dc_ti_i2c_driver = { > > + .driver = { > > + .name = KBUILD_MODNAME, > > + .pm = &dc_ti_pm_ops, > > + .acpi_match_table = ACPI_PTR(dc_ti_acpi_ids), > > ACPI_PTR is redundant here, driver is solely for ACPI case. Right. thanks, Takashi