iio:temperature:tmp007: Drop of_match_ptr protection
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Thu, 10 Sep 2020 17:32:26 +0000 (18:32 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 21 Sep 2020 17:41:30 +0000 (18:41 +0100)
This prevents use of this driver with ACPI via PRP0001 and is
an example of an anti pattern I'm trying to remove from IIO.
Hence drop from this driver.

Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: Manivannan Sadhasivam <manivannanece23@gmail.com>
Link: https://lore.kernel.org/r/20200910173242.621168-23-jic23@kernel.org
drivers/iio/temperature/tmp007.c

index f90fe9e5617b07795d1a93ca032259b063f86a62..ad2b35c6554853dc41017d9c237f40562f1a36d6 100644 (file)
@@ -20,7 +20,7 @@
 #include <linux/module.h>
 #include <linux/pm.h>
 #include <linux/bitops.h>
-#include <linux/of.h>
+#include <linux/mod_devicetable.h>
 #include <linux/irq.h>
 #include <linux/interrupt.h>
 
@@ -578,7 +578,7 @@ MODULE_DEVICE_TABLE(i2c, tmp007_id);
 static struct i2c_driver tmp007_driver = {
        .driver = {
                .name   = "tmp007",
-               .of_match_table = of_match_ptr(tmp007_of_match),
+               .of_match_table = tmp007_of_match,
                .pm     = &tmp007_pm_ops,
        },
        .probe          = tmp007_probe,