Message ID | a232fe7a8104f8d1cddfc5950aa48748ea90bffa.1682373451.git.mehdi.djait.k@gmail.com |
---|---|
State | Superseded |
Headers | show |
Series | iio: accel: Add support for Kionix/ROHM KX132-1211 accelerometer | expand |
On Tue, Apr 25, 2023 at 12:22:24AM +0200, Mehdi Djait wrote: > Add the missing i2c device id Seems like unfinished commit message (also note missing period, that's why I paid attention to this). ... > +static const struct i2c_device_id kx022a_i2c_id[] = { > + { .name = "kx022a", 0 }, ', 0' is redundant. > + { } > +}; > +MODULE_DEVICE_TABLE(i2c, kx022a_i2c_id);
Hi Andi, On Tue, Apr 25, 2023 at 04:40:08PM +0300, Andy Shevchenko wrote: > On Tue, Apr 25, 2023 at 12:22:24AM +0200, Mehdi Djait wrote: > > Add the missing i2c device id > > Seems like unfinished commit message (also note missing period, that's why > I paid attention to this). > While the period is indeed missing. I did not find anything else to write in the commit message other than 'Add the missing i2c device id' > ... > > > +static const struct i2c_device_id kx022a_i2c_id[] = { > > + { .name = "kx022a", 0 }, > > ', 0' is redundant. I will remove it -- Kind Regards Mehdi Djait
diff --git a/drivers/iio/accel/kionix-kx022a-i2c.c b/drivers/iio/accel/kionix-kx022a-i2c.c index e6fd02d931b6..8f23631a1fd3 100644 --- a/drivers/iio/accel/kionix-kx022a-i2c.c +++ b/drivers/iio/accel/kionix-kx022a-i2c.c @@ -30,6 +30,12 @@ static int kx022a_i2c_probe(struct i2c_client *i2c) return kx022a_probe_internal(dev); } +static const struct i2c_device_id kx022a_i2c_id[] = { + { .name = "kx022a", 0 }, + { } +}; +MODULE_DEVICE_TABLE(i2c, kx022a_i2c_id); + static const struct of_device_id kx022a_of_match[] = { { .compatible = "kionix,kx022a", }, { } @@ -42,6 +48,7 @@ static struct i2c_driver kx022a_i2c_driver = { .of_match_table = kx022a_of_match, }, .probe_new = kx022a_i2c_probe, + .id_table = kx022a_i2c_id, }; module_i2c_driver(kx022a_i2c_driver);
Add the missing i2c device id Signed-off-by: Mehdi Djait <mehdi.djait.k@gmail.com> --- v3: - no changes, this patch is introduced in the v2 drivers/iio/accel/kionix-kx022a-i2c.c | 7 +++++++ 1 file changed, 7 insertions(+)