aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/iio/light/st_uvis25_i2c.c
diff options
context:
space:
mode:
authorJonathan Cameron <Jonathan.Cameron@huawei.com>2020-04-19 16:02:05 +0100
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2020-04-25 15:44:36 +0100
commit645aee51af92147801067cacda45ddfdbe544caf (patch)
treecbc24b92b876a47e7137bb6db8bb56cce669ef9b /drivers/iio/light/st_uvis25_i2c.c
parentiio: light: opt3001: Add mod_devicetable.h and drop use of of_match_ptr (diff)
downloadwireguard-linux-645aee51af92147801067cacda45ddfdbe544caf.tar.xz
wireguard-linux-645aee51af92147801067cacda45ddfdbe544caf.zip
iio: light: st_uvis25: Add mod_devicetable.h and drop of_match_ptr
Enables probing via ACPI PRP0001 and removes an example that we don't want people to cut and paste into new drivers. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
Diffstat (limited to 'drivers/iio/light/st_uvis25_i2c.c')
-rw-r--r--drivers/iio/light/st_uvis25_i2c.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/iio/light/st_uvis25_i2c.c b/drivers/iio/light/st_uvis25_i2c.c
index 400724069d19..98cd49eefe45 100644
--- a/drivers/iio/light/st_uvis25_i2c.c
+++ b/drivers/iio/light/st_uvis25_i2c.c
@@ -9,6 +9,7 @@
#include <linux/kernel.h>
#include <linux/module.h>
+#include <linux/mod_devicetable.h>
#include <linux/i2c.h>
#include <linux/slab.h>
#include <linux/regmap.h>
@@ -55,7 +56,7 @@ static struct i2c_driver st_uvis25_driver = {
.driver = {
.name = "st_uvis25_i2c",
.pm = &st_uvis25_pm_ops,
- .of_match_table = of_match_ptr(st_uvis25_i2c_of_match),
+ .of_match_table = st_uvis25_i2c_of_match,
},
.probe = st_uvis25_i2c_probe,
.id_table = st_uvis25_i2c_id_table,