[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250220165001.273325-2-jerrysteve1101@gmail.com>
Date: Fri, 21 Feb 2025 00:50:00 +0800
From: Jun Yan <jerrysteve1101@...il.com>
To: jic23@...nel.org
Cc: lars@...afoo.de,
linux-iio@...r.kernel.org,
linux-kernel@...r.kernel.org,
Jun Yan <jerrysteve1101@...il.com>
Subject: [PATCH v2 1/2] iio: gyro: bmg160_spi: add of_match_table
Add of_match_table to bmg160_spi driver.
This fixes automatic driver loading by userspace
When using the device tree and the driver is built
as a module, devices can be probed.
Signed-off-by: Jun Yan <jerrysteve1101@...il.com>
---
drivers/iio/gyro/bmg160_spi.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/iio/gyro/bmg160_spi.c b/drivers/iio/gyro/bmg160_spi.c
index fc2e453527b9..ac04b3b1b554 100644
--- a/drivers/iio/gyro/bmg160_spi.c
+++ b/drivers/iio/gyro/bmg160_spi.c
@@ -41,9 +41,19 @@ static const struct spi_device_id bmg160_spi_id[] = {
MODULE_DEVICE_TABLE(spi, bmg160_spi_id);
+static const struct of_device_id bmg160_of_match[] = {
+ { .compatible = "bosch,bmg160" },
+ { .compatible = "bosch,bmi055_gyro" },
+ { .compatible = "bosch,bmi088_gyro" },
+ { }
+};
+
+MODULE_DEVICE_TABLE(of, bmg160_of_match);
+
static struct spi_driver bmg160_spi_driver = {
.driver = {
.name = "bmg160_spi",
+ .of_match_table = bmg160_of_match,
.pm = &bmg160_pm_ops,
},
.probe = bmg160_spi_probe,
--
2.48.1
Powered by blists - more mailing lists