Commit c8ae2735 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Alexandre Belloni

rtc: isl12022: Drop unneeded OF guards and of_match_ptr()

Drop unneeded OF guards and of_match_ptr(). This allows use of
the driver with other types of firmware such as ACPI PRP0001 based
probing.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230110140806.87432-4-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent 93219a4f
...@@ -14,8 +14,6 @@ ...@@ -14,8 +14,6 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/err.h> #include <linux/err.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/regmap.h> #include <linux/regmap.h>
#include <linux/hwmon.h> #include <linux/hwmon.h>
...@@ -46,8 +44,6 @@ ...@@ -46,8 +44,6 @@
#define ISL12022_BETA_TSE (1 << 7) #define ISL12022_BETA_TSE (1 << 7)
static struct i2c_driver isl12022_driver;
static umode_t isl12022_hwmon_is_visible(const void *data, static umode_t isl12022_hwmon_is_visible(const void *data,
enum hwmon_sensor_types type, enum hwmon_sensor_types type,
u32 attr, int channel) u32 attr, int channel)
...@@ -252,14 +248,12 @@ static int isl12022_probe(struct i2c_client *client) ...@@ -252,14 +248,12 @@ static int isl12022_probe(struct i2c_client *client)
return devm_rtc_register_device(rtc); return devm_rtc_register_device(rtc);
} }
#ifdef CONFIG_OF
static const struct of_device_id isl12022_dt_match[] = { static const struct of_device_id isl12022_dt_match[] = {
{ .compatible = "isl,isl12022" }, /* for backward compat., don't use */ { .compatible = "isl,isl12022" }, /* for backward compat., don't use */
{ .compatible = "isil,isl12022" }, { .compatible = "isil,isl12022" },
{ }, { },
}; };
MODULE_DEVICE_TABLE(of, isl12022_dt_match); MODULE_DEVICE_TABLE(of, isl12022_dt_match);
#endif
static const struct i2c_device_id isl12022_id[] = { static const struct i2c_device_id isl12022_id[] = {
{ "isl12022", 0 }, { "isl12022", 0 },
...@@ -270,9 +264,7 @@ MODULE_DEVICE_TABLE(i2c, isl12022_id); ...@@ -270,9 +264,7 @@ MODULE_DEVICE_TABLE(i2c, isl12022_id);
static struct i2c_driver isl12022_driver = { static struct i2c_driver isl12022_driver = {
.driver = { .driver = {
.name = "rtc-isl12022", .name = "rtc-isl12022",
#ifdef CONFIG_OF .of_match_table = isl12022_dt_match,
.of_match_table = of_match_ptr(isl12022_dt_match),
#endif
}, },
.probe_new = isl12022_probe, .probe_new = isl12022_probe,
.id_table = isl12022_id, .id_table = isl12022_id,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment