]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
adc: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Thu, 2 May 2024 01:30:27 +0000 (19:30 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 7 May 2024 14:00:41 +0000 (08:00 -0600)
Remove <common.h> from this driver directory and when needed
add missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/adc/adc-uclass.c
drivers/adc/exynos-adc.c
drivers/adc/imx93-adc.c
drivers/adc/meson-saradc.c
drivers/adc/rockchip-saradc.c
drivers/adc/sandbox.c
drivers/adc/stm32-adc-core.c
drivers/adc/stm32-adc.c

index 1b35bf22014f9f038c04bd46924e0101c347385f..16600be821c9fc4fdd1488504ae29a7cd004c1ca 100644 (file)
@@ -6,7 +6,6 @@
 
 #define LOG_CATEGORY UCLASS_ADC
 
-#include <common.h>
 #include <errno.h>
 #include <div64.h>
 #include <dm.h>
index 2bda733af90d7334732450e9925e39bec47a63aa..ecc564cd219a6c0fadf7fd1daa8382d7d7bfdf7b 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2015 Samsung Electronics
  * Przemyslaw Marczak <p.marczak@samsung.com>
  */
-#include <common.h>
 #include <errno.h>
 #include <dm.h>
 #include <adc.h>
index 41d04e0426cd943fd51753c11b4210e4d3768f56..f593fb6447b3f28b9a2af9d81bff172000002505 100644 (file)
@@ -6,7 +6,6 @@
  * Originally based on NXP linux-imx kernel v5.15 drivers/iio/adc/imx93_adc.c
  */
 
-#include <common.h>
 #include <errno.h>
 #include <dm.h>
 #include <linux/bitfield.h>
index c15c7fea47fedc114a4f5919921d6e57446affd5..60e348968fb54e5e3172738ae1292182621a948a 100644 (file)
@@ -7,7 +7,6 @@
  * Amlogic Meson Successive Approximation Register (SAR) A/D Converter
  */
 
-#include <common.h>
 #include <adc.h>
 #include <clk.h>
 #include <dm.h>
index 10ded1b088f380265c5b8100f7ed6ff90b60f738..f6832ab30731463546917204863b791c54136a92 100644 (file)
@@ -5,7 +5,6 @@
  * Rockchip SARADC driver for U-Boot
  */
 
-#include <common.h>
 #include <adc.h>
 #include <clk.h>
 #include <dm.h>
index 43cad34ffebf8d67d6e56f71a9bb8040e274ab0e..24d4af63bd9be535d50d38a4afc7427b9f451c16 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2015 Samsung Electronics
  * Przemyslaw Marczak <p.marczak@samsung.com>
  */
-#include <common.h>
 #include <errno.h>
 #include <dm.h>
 #include <adc.h>
index 6c176961f17ae6007f67f26e6762d8dec92afee4..af340b8b273b0c13fea29b8817dc896576111a7a 100644 (file)
@@ -6,7 +6,6 @@
  * Originally based on the Linux kernel v4.18 drivers/iio/adc/stm32-adc-core.c.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <asm/io.h>
 #include <dm/device_compat.h>
index 1fba707c6f7dac054a0ae843d1990e97d8acbc0d..d50f00f1233e07cfdf8f9e2b26137b3bb7b4b408 100644 (file)
@@ -6,7 +6,6 @@
  * Originally based on the Linux kernel v4.18 drivers/iio/adc/stm32-adc.c.
  */
 
-#include <common.h>
 #include <adc.h>
 #include <dm.h>
 #include <asm/io.h>