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>
This commit is contained in:
Simon Glass 2020-07-19 10:15:52 -06:00 committed by Tom Rini
parent dcd7c906d0
commit c273da0765
3 changed files with 4 additions and 2 deletions

View File

@ -7,6 +7,7 @@
*/ */
#include <common.h> #include <common.h>
#include <dm.h>
#include <asm/io.h> #include <asm/io.h>
#include <dm/device_compat.h> #include <dm/device_compat.h>
#include <linux/bitops.h> #include <linux/bitops.h>

View File

@ -26,9 +26,9 @@
#define STM32_ADC_MAX_ADCS 3 #define STM32_ADC_MAX_ADCS 3
#define STM32_ADCX_COMN_OFFSET 0x300 #define STM32_ADCX_COMN_OFFSET 0x300
#include <common.h>
#include <clk.h> #include <clk.h>
#include <dm.h>
struct udevice;
/** /**
* struct stm32_adc_common - stm32 ADC driver common data (for all instances) * struct stm32_adc_common - stm32 ADC driver common data (for all instances)

View File

@ -8,6 +8,7 @@
#include <common.h> #include <common.h>
#include <adc.h> #include <adc.h>
#include <dm.h>
#include <asm/io.h> #include <asm/io.h>
#include <dm/device_compat.h> #include <dm/device_compat.h>
#include <linux/bitops.h> #include <linux/bitops.h>