[PATCH] fixup! aiodev: add support for STM32 ADC
Ahmad Fatoum
a.fatoum at pengutronix.de
Tue Feb 9 03:00:47 EST 2021
The identifiers hint at where the driver boilerplate was taken from.
Replace them with correctly named ones.
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
drivers/aiodev/stm32-adc.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/aiodev/stm32-adc.c b/drivers/aiodev/stm32-adc.c
index eb9548adef70..c99b995eafe5 100644
--- a/drivers/aiodev/stm32-adc.c
+++ b/drivers/aiodev/stm32-adc.c
@@ -360,15 +360,15 @@ static const struct stm32_adc_cfg stm32mp1_adc_cfg = {
.has_vregready = true,
};
-static const struct of_device_id qoriq_tmu_match[] = {
+static const struct of_device_id stm32_adc_match[] = {
{ .compatible = "st,stm32h7-adc", .data = &stm32h7_adc_cfg },
{ .compatible = "st,stm32mp1-adc", .data = &stm32mp1_adc_cfg },
{}
};
-static struct driver_d imx_thermal_driver = {
+static struct driver_d stm32_adc_driver = {
.name = "stm32-adc",
.probe = stm32_adc_probe,
- .of_compatible = DRV_OF_COMPAT(qoriq_tmu_match),
+ .of_compatible = DRV_OF_COMPAT(stm32_adc_match),
};
-device_platform_driver(imx_thermal_driver);
+device_platform_driver(stm32_adc_driver);
--
2.30.0
More information about the barebox
mailing list