thermal/drivers/thermal_mmio: Drop of_match_ptr()

Now that the driver depends on OF, we know what of_match_ptr() will
always resolve to, so we might as well save cpp some work.

Signed-off-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Jean Delvare 2022-08-04 13:59:38 +02:00 committed by Rafael J. Wysocki
parent b90cb10531
commit b1a2c4ee8b

View file

@ -107,7 +107,7 @@ static struct platform_driver thermal_mmio_driver = {
.probe = thermal_mmio_probe,
.driver = {
.name = "thermal-mmio",
.of_match_table = of_match_ptr(thermal_mmio_id_table),
.of_match_table = thermal_mmio_id_table,
},
};