Message ID | 20200628123654.32830-8-jic23@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | iio:adc more of_match_ptr and similar removal | expand |
Hallo Jonathan, On Sun, Jun 28, 2020 at 01:36:38PM +0100, Jonathan Cameron wrote: > @@ -96,7 +96,7 @@ MODULE_DEVICE_TABLE(of, ltc2496_of_match); > static struct spi_driver ltc2496_driver = { > .driver = { > .name = "ltc2496", > - .of_match_table = of_match_ptr(ltc2496_of_match), > + .of_match_table = ltc2496_of_match, The usage of of_match_ptr would only make sense here if ltc2496_of_match was defined conditionally. As this isn't the case: Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Thanks Uwe
On Sun, 28 Jun 2020 17:52:21 +0200 Uwe Kleine-König <u.kleine-koenig@pengutronix.de> wrote: > Hallo Jonathan, > > On Sun, Jun 28, 2020 at 01:36:38PM +0100, Jonathan Cameron wrote: > > @@ -96,7 +96,7 @@ MODULE_DEVICE_TABLE(of, ltc2496_of_match); > > static struct spi_driver ltc2496_driver = { > > .driver = { > > .name = "ltc2496", > > - .of_match_table = of_match_ptr(ltc2496_of_match), > > + .of_match_table = ltc2496_of_match, > > The usage of of_match_ptr would only make sense here if ltc2496_of_match > was defined conditionally. As this isn't the case: > > Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Thanks, Applied to the togreg branch of iio.git and pushed out as testing to see if we missed anything. Thanks, Jonathan > > Thanks > Uwe >
diff --git a/drivers/iio/adc/ltc2496.c b/drivers/iio/adc/ltc2496.c index 88a30156a849..dd956a7c216e 100644 --- a/drivers/iio/adc/ltc2496.c +++ b/drivers/iio/adc/ltc2496.c @@ -14,7 +14,7 @@ #include <linux/iio/iio.h> #include <linux/iio/driver.h> #include <linux/module.h> -#include <linux/of.h> +#include <linux/mod_devicetable.h> #include "ltc2497.h" @@ -96,7 +96,7 @@ MODULE_DEVICE_TABLE(of, ltc2496_of_match); static struct spi_driver ltc2496_driver = { .driver = { .name = "ltc2496", - .of_match_table = of_match_ptr(ltc2496_of_match), + .of_match_table = ltc2496_of_match, }, .probe = ltc2496_probe, .remove = ltc2496_remove,