diff options
author | Simon Glass <sjg@chromium.org> | 2020-07-19 10:15:52 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-03 22:19:54 -0400 |
commit | c273da076553d72b4a3542efcc97cc7313604dea (patch) | |
tree | b498c28932f3e49aae4ab1f8926bc75806265581 /drivers/adc | |
parent | dcd7c906d03829ce3a641c2a67edfe242dcea714 (diff) | |
download | u-boot-c273da076553d72b4a3542efcc97cc7313604dea.tar.gz u-boot-c273da076553d72b4a3542efcc97cc7313604dea.tar.bz2 u-boot-c273da076553d72b4a3542efcc97cc7313604dea.zip |
adc: Drop dm.h header file
This header file should not be included in other header files. Remove it
and use a forward declaration instead.
Drop the common.h inclusion also.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/adc')
-rw-r--r-- | drivers/adc/stm32-adc-core.c | 1 | ||||
-rw-r--r-- | drivers/adc/stm32-adc-core.h | 4 | ||||
-rw-r--r-- | drivers/adc/stm32-adc.c | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/drivers/adc/stm32-adc-core.c b/drivers/adc/stm32-adc-core.c index 31bbb6f9d6..f20c46fb36 100644 --- a/drivers/adc/stm32-adc-core.c +++ b/drivers/adc/stm32-adc-core.c @@ -7,6 +7,7 @@ */ #include <common.h> +#include <dm.h> #include <asm/io.h> #include <dm/device_compat.h> #include <linux/bitops.h> diff --git a/drivers/adc/stm32-adc-core.h b/drivers/adc/stm32-adc-core.h index ba0e10e6cc..05968dbcc8 100644 --- a/drivers/adc/stm32-adc-core.h +++ b/drivers/adc/stm32-adc-core.h @@ -26,9 +26,9 @@ #define STM32_ADC_MAX_ADCS 3 #define STM32_ADCX_COMN_OFFSET 0x300 -#include <common.h> #include <clk.h> -#include <dm.h> + +struct udevice; /** * struct stm32_adc_common - stm32 ADC driver common data (for all instances) diff --git a/drivers/adc/stm32-adc.c b/drivers/adc/stm32-adc.c index b12f894a9b..3f0ed48846 100644 --- a/drivers/adc/stm32-adc.c +++ b/drivers/adc/stm32-adc.c @@ -8,6 +8,7 @@ #include <common.h> #include <adc.h> +#include <dm.h> #include <asm/io.h> #include <dm/device_compat.h> #include <linux/bitops.h> |