From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Tue, 18 Nov 2014 15:26:07 +0000 From: Lee Jones To: Jacob Pan Cc: LKML , IIO , Jonathan Cameron , Carlo Caione , Samuel Ortiz , Ramakrishna Pallala , Todd Brandt , Peter Meerwald , Rafael Wysocki , Hartmut Knaack , Aaron Lu Subject: Re: [PATCH 1/3] iio: adc: Add module device table for autoloading Message-ID: <20141118152607.GC13792@x1> References: <1415734210-5657-1-git-send-email-jacob.jun.pan@linux.intel.com> <1415734210-5657-2-git-send-email-jacob.jun.pan@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 In-Reply-To: <1415734210-5657-2-git-send-email-jacob.jun.pan@linux.intel.com> List-ID: On Tue, 11 Nov 2014, Jacob Pan wrote: > From: Aaron Lu > > Add the module device id table so that the driver can be automatically > loaded once the platform device is created. > > Signed-off-by: Aaron Lu > Signed-off-by: Jacob Pan > --- > drivers/iio/adc/axp288_adc.c | 8 ++++++++ > 1 file changed, 8 insertions(+) Applied, thanks. > diff --git a/drivers/iio/adc/axp288_adc.c b/drivers/iio/adc/axp288_adc.c > index 4800286..4a6cf43 100644 > --- a/drivers/iio/adc/axp288_adc.c > +++ b/drivers/iio/adc/axp288_adc.c > @@ -238,15 +238,23 @@ static int axp288_adc_remove(struct platform_device *pdev) > return 0; > } > > +static struct platform_device_id axp288_adc_id_table[] = { > + { .name = "axp288_adc" }, > + {}, > +}; > + > static struct platform_driver axp288_adc_driver = { > .probe = axp288_adc_probe, > .remove = axp288_adc_remove, > + .id_table = axp288_adc_id_table, > .driver = { > .name = "axp288_adc", > .owner = THIS_MODULE, > }, > }; > > +MODULE_DEVICE_TABLE(platform, axp288_adc_id_table); > + > module_platform_driver(axp288_adc_driver); > > MODULE_AUTHOR("Jacob Pan "); -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog