* [PATCH] iio: bmi270_i2c: Add MODULE_DEVICE_TABLE for BMI260/270
@ 2026-01-06 5:45 Derek J. Clark
2026-01-07 21:04 ` Andy Shevchenko
0 siblings, 1 reply; 3+ messages in thread
From: Derek J. Clark @ 2026-01-06 5:45 UTC (permalink / raw)
To: Jonathan Cameron, David Lechner, Andy Shevchenko
Cc: Alex Lanzano, linux-iio, linux-kernel, stable, Derek J. Clark
Currently BMI260 & BMI270 devices do not automatically load this
driver. To fix this, add missing MODULE_DEVICE_TABLE for the i2c,
acpi, and of device tables so the driver will load when the hardware
is detected.
Tested on my OneXPlayer F1 Pro.
Signed-off-by: Derek J. Clark <derekjohn.clark@gmail.com>
---
drivers/iio/imu/bmi270/bmi270_i2c.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/iio/imu/bmi270/bmi270_i2c.c b/drivers/iio/imu/bmi270/bmi270_i2c.c
index b909a421ad01..b92da4e0776f 100644
--- a/drivers/iio/imu/bmi270/bmi270_i2c.c
+++ b/drivers/iio/imu/bmi270/bmi270_i2c.c
@@ -37,6 +37,7 @@ static const struct i2c_device_id bmi270_i2c_id[] = {
{ "bmi270", (kernel_ulong_t)&bmi270_chip_info },
{ }
};
+MODULE_DEVICE_TABLE(i2c, bmi270_i2c_id);
static const struct acpi_device_id bmi270_acpi_match[] = {
/* GPD Win Mini, Aya Neo AIR Pro, OXP Mini Pro, etc. */
@@ -45,12 +46,14 @@ static const struct acpi_device_id bmi270_acpi_match[] = {
{ "BMI0260", (kernel_ulong_t)&bmi260_chip_info },
{ }
};
+MODULE_DEVICE_TABLE(acpi, bmi270_acpi_match);
static const struct of_device_id bmi270_of_match[] = {
{ .compatible = "bosch,bmi260", .data = &bmi260_chip_info },
{ .compatible = "bosch,bmi270", .data = &bmi270_chip_info },
{ }
};
+MODULE_DEVICE_TABLE(of, bmi270_of_match);
static struct i2c_driver bmi270_i2c_driver = {
.driver = {
--
2.51.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: bmi270_i2c: Add MODULE_DEVICE_TABLE for BMI260/270
2026-01-06 5:45 [PATCH] iio: bmi270_i2c: Add MODULE_DEVICE_TABLE for BMI260/270 Derek J. Clark
@ 2026-01-07 21:04 ` Andy Shevchenko
2026-01-11 13:03 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: Andy Shevchenko @ 2026-01-07 21:04 UTC (permalink / raw)
To: Derek J. Clark
Cc: Jonathan Cameron, David Lechner, Andy Shevchenko, Alex Lanzano,
linux-iio, linux-kernel, stable
On Tue, Jan 06, 2026 at 05:45:19AM +0000, Derek J. Clark wrote:
> Currently BMI260 & BMI270 devices do not automatically load this
> driver. To fix this, add missing MODULE_DEVICE_TABLE for the i2c,
> acpi, and of device tables so the driver will load when the hardware
> is detected.
>
> Tested on my OneXPlayer F1 Pro.
No objections,
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: bmi270_i2c: Add MODULE_DEVICE_TABLE for BMI260/270
2026-01-07 21:04 ` Andy Shevchenko
@ 2026-01-11 13:03 ` Jonathan Cameron
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2026-01-11 13:03 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Derek J. Clark, David Lechner, Andy Shevchenko, Alex Lanzano,
linux-iio, linux-kernel, stable
On Wed, 7 Jan 2026 23:04:53 +0200
Andy Shevchenko <andriy.shevchenko@intel.com> wrote:
> On Tue, Jan 06, 2026 at 05:45:19AM +0000, Derek J. Clark wrote:
> > Currently BMI260 & BMI270 devices do not automatically load this
> > driver. To fix this, add missing MODULE_DEVICE_TABLE for the i2c,
> > acpi, and of device tables so the driver will load when the hardware
> > is detected.
> >
> > Tested on my OneXPlayer F1 Pro.
>
> No objections,
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
>
Applied to the togreg branch of iio.git and pushed out as testing.
These are always a bit of a corner case wrt to whether we should treat
them as a fix. It never worked though so I'm not going to rush them in.
If you want it applied to stable kernels, I'm fine with a request for
that after the next merge window.
Thanks,
Jonathan
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-01-11 13:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-06 5:45 [PATCH] iio: bmi270_i2c: Add MODULE_DEVICE_TABLE for BMI260/270 Derek J. Clark
2026-01-07 21:04 ` Andy Shevchenko
2026-01-11 13:03 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox