Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755463AbdL2JLk (ORCPT ); Fri, 29 Dec 2017 04:11:40 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:48059 "EHLO relay4-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755385AbdL2JLg (ORCPT ); Fri, 29 Dec 2017 04:11:36 -0500 X-Originating-IP: 2.43.168.83 Date: Fri, 29 Dec 2017 10:11:23 +0100 From: jacopo mondi To: Dmitry Mastykin Cc: Jonathan Cameron , Hartmut Knaack , Lars-Peter Clausen , Peter Meerwald-Stadler , Jacopo Mondi , Rob Herring , Dan Carpenter , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] iio: adc: max9611: fix module auto-loading Message-ID: <20171229091123.GA8023@w540> References: <1514531684-3872-1-git-send-email-mastichi@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1514531684-3872-1-git-send-email-mastichi@gmail.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1186 Lines: 47 Hi Dmitry, On Fri, Dec 29, 2017 at 10:14:27AM +0300, Dmitry Mastykin wrote: > Module auto-load doesn't work because i2c table is not exported. > > Signed-off-by: Dmitry Mastykin > --- > drivers/iio/adc/max9611.c | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) > > diff --git a/drivers/iio/adc/max9611.c b/drivers/iio/adc/max9611.c > index b1dd17c..7924b5c 100644 > --- a/drivers/iio/adc/max9611.c > +++ b/drivers/iio/adc/max9611.c > @@ -516,13 +516,20 @@ static int max9611_init(struct max9611_dev *max9611) > return 0; > } > > +static const struct i2c_device_id max9611_id[] = { > + { "max9611", 0 }, > + { "max9612", 0 }, > + { }, > + }; > +MODULE_DEVICE_TABLE(i2c, max9611_id); > + Wouldn't you need to also set the "id_table" field of "struct i2c_driver" to point this? Thanks j > static const struct of_device_id max9611_of_table[] = { > {.compatible = "maxim,max9611", .data = "max9611"}, > {.compatible = "maxim,max9612", .data = "max9612"}, > { }, > }; > - > MODULE_DEVICE_TABLE(of, max9611_of_table); > + > static int max9611_probe(struct i2c_client *client, > const struct i2c_device_id *id) > { > -- > 2.7.4 >