Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752923AbdDMNKL (ORCPT ); Thu, 13 Apr 2017 09:10:11 -0400 Received: from bh-25.webhostbox.net ([208.91.199.152]:43914 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751083AbdDMNKH (ORCPT ); Thu, 13 Apr 2017 09:10:07 -0400 Date: Thu, 13 Apr 2017 06:10:05 -0700 From: Guenter Roeck To: Javier Martinez Canillas Cc: linux-kernel@vger.kernel.org, linux-hwmon@vger.kernel.org, Jean Delvare Subject: Re: [v2,2/2] hwmon: (lm87) Add OF device ID table Message-ID: <20170413131005.GA23689@roeck-us.net> References: <20170413002139.5983-2-javier@osg.samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170413002139.5983-2-javier@osg.samsung.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-Authenticated_sender: guenter@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: guenter@roeck-us.net X-Authenticated-Sender: bh-25.webhostbox.net: guenter@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1673 Lines: 56 On Wed, Apr 12, 2017 at 09:21:39PM -0300, Javier Martinez Canillas wrote: > The driver doesn't have a struct of_device_id table but supported devices > are registered via Device Trees. This is working on the assumption that a > I2C device registered via OF will always match a legacy I2C device ID and > that the MODALIAS reported will always be of the form i2c:. > > But this could change in the future so the correct approach is to have an > OF device ID table if the devices are registered via OF. > > Signed-off-by: Javier Martinez Canillas Applied. Thanks, Guenter > --- > Hello, > > I should had included this patch in series [0] but it seems that I didn't. > > [0]: https://lkml.org/lkml/2017/2/24/360 > > Best regards, > Javier > > Changes in v2: > - Use the correct driver in subject line. > - Keep OF device ID table sorted in the same order than I2C device ID table. > > drivers/hwmon/lm87.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/drivers/hwmon/lm87.c b/drivers/hwmon/lm87.c > index c0766e7392d3..b48d30760388 100644 > --- a/drivers/hwmon/lm87.c > +++ b/drivers/hwmon/lm87.c > @@ -985,10 +985,18 @@ static const struct i2c_device_id lm87_id[] = { > }; > MODULE_DEVICE_TABLE(i2c, lm87_id); > > +static const struct of_device_id lm87_of_match[] = { > + { .compatible = "ti,lm87" }, > + { .compatible = "adi,adm1024" }, > + { }, > +}; > +MODULE_DEVICE_TABLE(of, lm87_of_match); > + > static struct i2c_driver lm87_driver = { > .class = I2C_CLASS_HWMON, > .driver = { > .name = "lm87", > + .of_match_table = lm87_of_match, > }, > .probe = lm87_probe, > .id_table = lm87_id,