From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keerthy Subject: Re: [PATCH 3/5] mfd: tps65217: Add a dependency on OF Date: Wed, 7 Jun 2017 10:15:41 +0530 Message-ID: References: <1496760340-27959-1-git-send-email-j-keerthy@ti.com> <1496760340-27959-4-git-send-email-j-keerthy@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org To: Enric Balletbo Serra Cc: Tony Lindgren , milo.kim@ti.com, Lee Jones , "linux-omap@vger.kernel.org" , linux-kernel List-Id: linux-omap@vger.kernel.org On Tuesday 06 June 2017 08:34 PM, Enric Balletbo Serra wrote: > Hi Keerthy, > > By change I was looking at this. Some comments below that I think can > be applied to all patches in this series > > 2017-06-06 16:45 GMT+02:00 Keerthy : >> Currently the driver boots only via device tree hence add a >> dependency on OF. >> >> Signed-off-by: Keerthy >> --- >> drivers/mfd/Kconfig | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig >> index 75b59f1..2d1425d 100644 >> --- a/drivers/mfd/Kconfig >> +++ b/drivers/mfd/Kconfig >> @@ -1297,7 +1297,7 @@ config MFD_TPS65090 >> >> config MFD_TPS65217 >> tristate "TI TPS65217 Power Management / White LED chips" >> - depends on I2C >> + depends on I2C && OF > > Shouldn't you add || COMPILE_TEST here ? Sure. > >> select MFD_CORE >> select REGMAP_I2C >> select IRQ_DOMAIN >> -- >> 1.9.1 >> > > I think you can remove the of_match_device checks in some drivers too > > i.e: > > http://elixir.free-electrons.com/linux/latest/source/drivers/mfd/tps65217.c#L330 Yes that and removal of unused i2c_device_id. I will follow it up once this OF dependency is in. > > Regards, > Enric >