2019-05-18 21:18:50

by Lucas Oshiro

[permalink] [raw]
Subject: [PATCH] staging: iio: adis16240: add device to module device table

Add a of_device_id struct and MODULE_DEVICE_TABLE call.

Signed-off-by: Lucas Oshiro <[email protected]>
Signed-off-by: Rodrigo Ribeiro <[email protected]>
Co-developed-by: Rodrigo Ribeiro <[email protected]>
---
drivers/staging/iio/accel/adis16240.c | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/drivers/staging/iio/accel/adis16240.c b/drivers/staging/iio/accel/adis16240.c
index b80e0d248b0f..8c6d23604eca 100644
--- a/drivers/staging/iio/accel/adis16240.c
+++ b/drivers/staging/iio/accel/adis16240.c
@@ -435,6 +435,12 @@ static int adis16240_remove(struct spi_device *spi)
return 0;
}

+static const struct of_device_id adis16240_of_match[] = {
+ { .compatible = "adi,adis16240" },
+ { },
+};
+MODULE_DEVICE_TABLE(of, adis16240_of_match);
+
static struct spi_driver adis16240_driver = {
.driver = {
.name = "adis16240",
--
2.21.0


2019-05-18 21:40:44

by Fabio Estevam

[permalink] [raw]
Subject: Re: [PATCH] staging: iio: adis16240: add device to module device table

Hi Lucas,

On Sat, May 18, 2019 at 6:01 PM Lucas Oshiro <[email protected]> wrote:
>
> Add a of_device_id struct and MODULE_DEVICE_TABLE call.

Please provide an explanation as to why you are doing this.

Thanks