Commit daffd7a7 authored by Andrew F. Davis's avatar Andrew F. Davis Committed by Jonathan Cameron

iio: health/afe440x: Remove of_match_ptr and ifdefs

The drivers DT tables are not built-in when OF is not enabled, this does
not save us enough to justify ugly ifdefs. Clean this up.
Signed-off-by: default avatarAndrew F. Davis <afd@ti.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent f59e6b5a
...@@ -498,13 +498,11 @@ static const struct regmap_config afe4403_regmap_config = { ...@@ -498,13 +498,11 @@ static const struct regmap_config afe4403_regmap_config = {
.volatile_table = &afe4403_volatile_table, .volatile_table = &afe4403_volatile_table,
}; };
#ifdef CONFIG_OF
static const struct of_device_id afe4403_of_match[] = { static const struct of_device_id afe4403_of_match[] = {
{ .compatible = "ti,afe4403", }, { .compatible = "ti,afe4403", },
{ /* sentinel */ } { /* sentinel */ }
}; };
MODULE_DEVICE_TABLE(of, afe4403_of_match); MODULE_DEVICE_TABLE(of, afe4403_of_match);
#endif
static int __maybe_unused afe4403_suspend(struct device *dev) static int __maybe_unused afe4403_suspend(struct device *dev)
{ {
...@@ -694,7 +692,7 @@ MODULE_DEVICE_TABLE(spi, afe4403_ids); ...@@ -694,7 +692,7 @@ MODULE_DEVICE_TABLE(spi, afe4403_ids);
static struct spi_driver afe4403_spi_driver = { static struct spi_driver afe4403_spi_driver = {
.driver = { .driver = {
.name = AFE4403_DRIVER_NAME, .name = AFE4403_DRIVER_NAME,
.of_match_table = of_match_ptr(afe4403_of_match), .of_match_table = afe4403_of_match,
.pm = &afe4403_pm_ops, .pm = &afe4403_pm_ops,
}, },
.probe = afe4403_probe, .probe = afe4403_probe,
......
...@@ -469,13 +469,11 @@ static const struct regmap_config afe4404_regmap_config = { ...@@ -469,13 +469,11 @@ static const struct regmap_config afe4404_regmap_config = {
.volatile_table = &afe4404_volatile_table, .volatile_table = &afe4404_volatile_table,
}; };
#ifdef CONFIG_OF
static const struct of_device_id afe4404_of_match[] = { static const struct of_device_id afe4404_of_match[] = {
{ .compatible = "ti,afe4404", }, { .compatible = "ti,afe4404", },
{ /* sentinel */ } { /* sentinel */ }
}; };
MODULE_DEVICE_TABLE(of, afe4404_of_match); MODULE_DEVICE_TABLE(of, afe4404_of_match);
#endif
static int __maybe_unused afe4404_suspend(struct device *dev) static int __maybe_unused afe4404_suspend(struct device *dev)
{ {
...@@ -665,7 +663,7 @@ MODULE_DEVICE_TABLE(i2c, afe4404_ids); ...@@ -665,7 +663,7 @@ MODULE_DEVICE_TABLE(i2c, afe4404_ids);
static struct i2c_driver afe4404_i2c_driver = { static struct i2c_driver afe4404_i2c_driver = {
.driver = { .driver = {
.name = AFE4404_DRIVER_NAME, .name = AFE4404_DRIVER_NAME,
.of_match_table = of_match_ptr(afe4404_of_match), .of_match_table = afe4404_of_match,
.pm = &afe4404_pm_ops, .pm = &afe4404_pm_ops,
}, },
.probe = afe4404_probe, .probe = afe4404_probe,
......
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