]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
misc: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Thu, 2 May 2024 01:30:58 +0000 (19:30 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 7 May 2024 14:00:55 +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>
72 files changed:
drivers/misc/altera_sysid.c
drivers/misc/atsha204a-i2c.c
drivers/misc/cbmem_console.c
drivers/misc/cros_ec.c
drivers/misc/cros_ec_i2c.c
drivers/misc/cros_ec_lpc.c
drivers/misc/cros_ec_sandbox.c
drivers/misc/cros_ec_spi.c
drivers/misc/ds4510.c
drivers/misc/esm_pmic.c
drivers/misc/fs_loader.c
drivers/misc/fsl_devdis.c
drivers/misc/fsl_ifc.c
drivers/misc/fsl_iim.c
drivers/misc/fsl_portals.c
drivers/misc/fsl_sec_mon.c
drivers/misc/gdsys_ioep.c
drivers/misc/gdsys_rxaui_ctrl.c
drivers/misc/gdsys_soc.c
drivers/misc/gpio_led.c
drivers/misc/i2c_eeprom.c
drivers/misc/i2c_eeprom_emul.c
drivers/misc/ihs_fpga.c
drivers/misc/imx8/fuse.c
drivers/misc/imx8/scu.c
drivers/misc/imx8/scu_api.c
drivers/misc/imx_ele/ele_api.c
drivers/misc/imx_ele/ele_mu.c
drivers/misc/imx_ele/fuse.c
drivers/misc/irq-uclass.c
drivers/misc/irq_sandbox.c
drivers/misc/irq_sandbox_test.c
drivers/misc/jz4780_efuse.c
drivers/misc/k3_avs.c
drivers/misc/k3_esm.c
drivers/misc/ls2_sfp.c
drivers/misc/microchip_flexcom.c
drivers/misc/misc-uclass.c
drivers/misc/misc_sandbox.c
drivers/misc/mpc83xx_serdes.c
drivers/misc/mxc_ocotp.c
drivers/misc/mxs_ocotp.c
drivers/misc/npcm_host_intf.c
drivers/misc/npcm_otp.c
drivers/misc/nuvoton_nct6102d.c
drivers/misc/nvmem.c
drivers/misc/p2sb-uclass.c
drivers/misc/p2sb_emul.c
drivers/misc/p2sb_sandbox.c
drivers/misc/pca9551_led.c
drivers/misc/pwrseq-uclass.c
drivers/misc/qfw.c
drivers/misc/rockchip-efuse.c
drivers/misc/rockchip-otp.c
drivers/misc/sandbox_adder.c
drivers/misc/sifive-otp.c
drivers/misc/sl28cpld.c
drivers/misc/smsc_lpc47m.c
drivers/misc/smsc_sio1007.c
drivers/misc/spltest_sandbox.c
drivers/misc/status_led.c
drivers/misc/stm32_rcc.c
drivers/misc/stm32mp_fuse.c
drivers/misc/swap_case.c
drivers/misc/syscon_sandbox.c
drivers/misc/tegra186_bpmp.c
drivers/misc/tegra_car.c
drivers/misc/test_drv.c
drivers/misc/turris_omnia_mcu.c
drivers/misc/usb251xb.c
drivers/misc/vexpress_config.c
drivers/misc/winbond_w83627.c

index 878df12771c8d72907e1ee86d2de5cb068fd2039..21e64fa3e6fef88bdc2b0a6a0a16b83761bb35ec 100644 (file)
@@ -4,7 +4,6 @@
  * Scott McNutt <smcnutt@psyent.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <errno.h>
index 707daa90bdba76551bc28848ecfbda881b0c901c..3b9046da880c106859978d36a5a10a1e6ce2259b 100644 (file)
@@ -10,7 +10,6 @@
  * published by the Free Software Foundation.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <i2c.h>
 #include <errno.h>
index ba3a599c4a51714ce58b04dd9af2347f1b1d6640..8220addd579bbc147c5ea138fe9324a8a3637e72 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright (C) 2011 The ChromiumOS Authors.  All rights reserved.
  */
 
-#include <common.h>
 #include <console.h>
+#include <linux/string.h>
 #include <asm/cb_sysinfo.h>
 
 void cbmemc_putc(struct stdio_dev *dev, char data)
index 9c1e6a5e3e70686feacce2d7bafe6f6468ffd7e0..fabe4964a334ba8cbf04a155a7c9baf615a8b41e 100644 (file)
@@ -15,7 +15,6 @@
 
 #define LOG_CATEGORY UCLASS_CROS_EC
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <i2c.h>
@@ -24,6 +23,7 @@
 #include <log.h>
 #include <malloc.h>
 #include <spi.h>
+#include <time.h>
 #include <linux/delay.h>
 #include <linux/errno.h>
 #include <asm/io.h>
index a1b78a3045dd56e799fd56954fbf71915b0e06fe..5516aa8b3ffd47ab48abff395baa22f4032b2af7 100644 (file)
@@ -12,7 +12,6 @@
  * KBC.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <i2c.h>
 #include <cros_ec.h>
index 1a8a81349c3a520489ff17ce3695cd2b2165ee4c..e2a3226362a9707c559c28362c9805cc11fe143c 100644 (file)
  * KBC.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <command.h>
 #include <cros_ec.h>
 #include <log.h>
+#include <time.h>
 #include <asm/io.h>
 
 #ifdef DEBUG_TRACE
index 1201535f4af4b834cedcfc0e5a1c4983bf5e8015..1cad51d474de333523872717f315fad9adf801b9 100644 (file)
@@ -7,7 +7,6 @@
 
 #define LOG_CATEGORY UCLASS_CROS_EC
 
-#include <common.h>
 #include <cros_ec.h>
 #include <dm.h>
 #include <ec_commands.h>
@@ -17,6 +16,7 @@
 #include <os.h>
 #include <u-boot/sha256.h>
 #include <spi.h>
+#include <time.h>
 #include <asm/malloc.h>
 #include <asm/state.h>
 #include <asm/sdl.h>
index 591ff30df89b8e52098ca16bb2265c753fdc7b0b..e86791c03a73c8c84e891c75781bd50ad22a2b7d 100644 (file)
  * KBC.
  */
 
-#include <common.h>
 #include <cros_ec.h>
 #include <dm.h>
 #include <errno.h>
 #include <log.h>
 #include <spi.h>
+#include <time.h>
 
 int cros_ec_spi_packet(struct udevice *udev, int out_bytes, int in_bytes)
 {
index 9340596f2c6392f9d69f2c37ac445e798d0f1777..302015e27938c1241308934cd50f7a5b4f75a9d5 100644 (file)
@@ -8,7 +8,6 @@
  * and 4 programmable non-volatile GPIO pins.
  */
 
-#include <common.h>
 #include <i2c.h>
 #include <command.h>
 #include <linux/delay.h>
index a518f750611a46c47cd608660464a3c9a138ab04..1963c8664a54e8f28fd72448dba9bddd63831e8f 100644 (file)
@@ -7,7 +7,6 @@
  *
  */
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <power/pmic.h>
index 1ffc199ba1e4939b737feb83f3208d00b6339bfc..66803f4b9975f4792c70adf16625cdf0e5bf1799 100644 (file)
@@ -6,7 +6,6 @@
 
 #define LOG_CATEGORY UCLASS_FS_FIRMWARE_LOADER
 
-#include <common.h>
 #include <dm.h>
 #include <env.h>
 #include <errno.h>
index 179053a298af955ca2ae5d9c63b75af18cf36f91..2c3d2348076258d0a9ca70d7fbebe312011d4ef0 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2015 Freescale Semiconductor, Inc.
  * Author: Zhuoyu Zhang <Zhuoyu.Zhang@freescale.com>
  */
-#include <common.h>
+#include <config.h>
 #include <asm/io.h>
 #include <asm/arch-ls102xa/immap_ls102xa.h>
 #include <asm/arch-ls102xa/config.h>
index f165b8c36ba445cf01d53b41206c3b5247e3cbf3..93f41da0f974fbd6ff8bbef34b150b180ef6f76a 100644 (file)
@@ -4,7 +4,7 @@
  * Author: Dipen Dudhat <dipen.dudhat@freescale.com>
  */
 
-#include <common.h>
+#include <config.h>
 #include <fsl_ifc.h>
 #include <part.h>
 
index 85cc3c26b2eff3ce699c56f0de834fd841e1f3f5..65468a68dbdfdeab0fe2d57b5554872dcd19e73f 100644 (file)
@@ -8,7 +8,6 @@
  * Martha Marx <mmarx@silicontkx.com>
  */
 
-#include <common.h>
 #include <fuse.h>
 #include <linux/delay.h>
 #include <linux/errno.h>
index 6b831281e96ff188d095f587045f3caf5738788f..e7c0df78b6b65af2e2d49ad2341a0243dbbc465c 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright 2017 NXP
  */
 
-#include <common.h>
+#include <config.h>
 #include <log.h>
 #include <linux/libfdt.h>
 #include <fdt_support.h>
index 3597ee22242cc6b9a435f9ab9d5f4877607a4de5..7518089e1e3e7ed603559b94bd7ae7518154cfb9 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2015 Freescale Semiconductor, Inc.
  */
 
-#include <common.h>
+#include <config.h>
 #include <fsl_sec_mon.h>
 #include <linux/delay.h>
 
index 145cfa23c6c5fea0401e1656d680dc3a51729371..d4916a277b84bcd505af8614308a9925abe18e10 100644 (file)
@@ -11,7 +11,6 @@
  * SPDX-License-Identifier:    GPL-2.0+
  */
 
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <misc.h>
index 8f5cbe420f8756b8609bd252deb5e1e2effebbe5..d4cd63ca9f89fc8a35bc43d7e91b95f2e312deb3 100644 (file)
@@ -7,7 +7,6 @@
  * Mario Six,  Guntermann & Drunck GmbH, mario.six@gdsys.cc
  */
 
-#include <common.h>
 #include <dm.h>
 #include <regmap.h>
 #include <misc.h>
index 27e7dc483276e71abfa72d4eb600905b717e14fc..0adbb8df3c2ca8c0c553996902926abe57bd0f54 100644 (file)
@@ -4,7 +4,6 @@
  * Mario Six,  Guntermann & Drunck GmbH, mario.six@gdsys.cc
  */
 
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <dm/lists.h>
index 30679f80cf15539e0cdb7c383ad44602569cd09b..e63689967a7ac0ee0f1bdc7e607bfb728ec11a67 100644 (file)
@@ -5,7 +5,6 @@
  * Licensed under the GPL-2 or later.
  */
 
-#include <common.h>
 #include <status_led.h>
 #include <asm/gpio.h>
 
index 9cb375a99ab84385371e0349aae48b9e0fc1e5f6..10f0173d80500d026514f022fed150c0f2ed57a5 100644 (file)
@@ -5,7 +5,6 @@
 
 #define LOG_CATEGORY UCLASS_I2C_EEPROM
 
-#include <common.h>
 #include <linux/delay.h>
 #include <linux/err.h>
 #include <linux/kernel.h>
index 6f32087ede56d7eb98de2affdd64f52625a52342..3ad2e047ee3ee84ef5cb8a6c6eea1431923649fe 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (c) 2014 Google, Inc
  */
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <i2c.h>
index a0fece985d85bc3105d6448458fea5c095be8585..fe196b6081987401acb34937e61b00cae9b667ee 100644 (file)
@@ -9,7 +9,6 @@
  * Dirk Eibach,  Guntermann & Drunck GmbH, eibach@gdsys.de
  */
 
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <regmap.h>
index b81f73f283f4c5fb7f3325aaa4b7ed5a9a0df65d..90d251a440589ca07e545ae1303121a74f888188 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright 2019 NXP
  */
 
-#include <common.h>
 #include <console.h>
 #include <errno.h>
 #include <fuse.h>
index 798800aa75837f4100e7a737e9cc4cc582277a36..bbd7e24200bde6a7809dc38c462860719d5a842e 100644 (file)
@@ -5,7 +5,6 @@
  * Peng Fan <peng.fan@nxp.com>
  */
 
-#include <common.h>
 #include <log.h>
 #include <asm/global_data.h>
 #include <asm/io.h>
index 6e2c678e614f6ba3fa35f471c41673d9ecd4e2c4..591d71b096a8d4293c91d4b58e55d63da078d274 100644 (file)
@@ -5,7 +5,6 @@
  * Peng Fan <peng.fan@nxp.com>
  */
 
-#include <common.h>
 #include <hang.h>
 #include <malloc.h>
 #include <asm/global_data.h>
index e0ec22c7abf9fa8afa58d81c5f3a6ea439c909cb..3745504637b3b472151577a70e0a201f3d7b9098 100644 (file)
@@ -4,7 +4,6 @@
  *
  */
 
-#include <common.h>
 #include <hang.h>
 #include <malloc.h>
 #include <asm/io.h>
index 053cdcf0fe07c4d14f20447ff553ea0c1ed58e87..0cf81f33ba5e704b45840be8c9e4cb2917946327 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright 2020-2022 NXP
  */
 
-#include <common.h>
 #include <asm/io.h>
 #include <dm.h>
 #include <dm/lists.h>
index 4e4dcb42cdd95fc609b0e9cb711a256b5a97228f..d12539c8aac06142f72eff41cb97d801c397c30d 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright 2020 NXP
  */
 
-#include <common.h>
 #include <console.h>
 #include <errno.h>
 #include <fuse.h>
index 7b79ed2df466010c1c08fd3ed3638b03e1320dd3..79eb7c200dc24aa42ca3855079ebe232d8ad70e7 100644 (file)
@@ -6,7 +6,6 @@
 
 #define LOG_CATEGORY UCLASS_IRQ
 
-#include <common.h>
 #include <dm.h>
 #include <dt-structs.h>
 #include <irq.h>
index 8b5573fcaddda24ea0d7c93b8a370f7d875c5bad..5d176f63b5cfa7d465d7ced56d4b007a8a640854 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright 2019 Google LLC
  */
 
-#include <common.h>
 #include <dm.h>
 #include <irq.h>
 #include <acpi/acpi_device.h>
index 95c45c24edb82adb294fe48c62ac12b0d5286187..3669b863bec180a29319bede798a8eb474af43a1 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright 2021 Google LLC
  */
 
-#include <common.h>
 #include <dm.h>
 #include <irq.h>
 #include <asm/irq.h>
index 1fba3271db6120833dbc71dcb326c5ada860240b..5c92de26ec5fc6c49c2fcb58e9f472294396eeb7 100644 (file)
@@ -6,7 +6,6 @@
  * Author: Alex Smith <alex.smith@imgtec.com>
  */
 
-#include <common.h>
 #include <asm/io.h>
 #include <asm/unaligned.h>
 #include <errno.h>
index 0d29eff1ac08af8500eb479027fb9b21808f2fdb..87471cc3b16adb39f485ca29121be24a4f7edc4b 100644 (file)
@@ -7,7 +7,6 @@
  *
  */
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <asm/io.h>
index f6ac18bdc757745ee19b7d63747b755bdb4f8a3a..fa3d656562206c909096e8e87148976a6fe93210 100644 (file)
@@ -7,7 +7,6 @@
  *
  */
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <asm/io.h>
index 5351c7ed34fd0ac8686d36ad36460bb56848b168..8cb6e999bed1d0d968e76c107be380a62926beb4 100644 (file)
@@ -12,7 +12,6 @@
  */
 
 #define LOG_CATEGORY UCLASS_MISC
-#include <common.h>
 #include <clk.h>
 #include <fuse.h>
 #include <misc.h>
index e0a6f2d38801e05ef39e5d590f3647d8137dc871..c5ddecac755171e5e9b25d4a69855b5a0fade377 100644 (file)
@@ -4,7 +4,6 @@
  * Author: Eugen Hristev <eugen.hristev@microchip.com>
  */
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <log.h>
index cfe9d562fa0d2fc5a9ca6f85926fcbfc499506ad..1389e146b61281b976d87c99eb4e530056de7811 100644 (file)
@@ -5,7 +5,6 @@
 
 #define LOG_CATEGORY UCLASS_MISC
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <misc.h>
index 31cde2dbac07eb0c55a400ca12e303712edc3dec..2473419df2a39e23f82ade8e0b59674a8110ecc7 100644 (file)
@@ -4,7 +4,6 @@
  * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
  */
 
-#include <common.h>
 #include <dm.h>
 #include <misc.h>
 
index 93c87e998c4f3923213d60e3096bee1ef6cd7a40..cf9aa9b35b337ca390c68cee6c54cad705a84074 100644 (file)
@@ -9,7 +9,6 @@
  * Copyright (C) 2008 MontaVista Software, Inc.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <mapmem.h>
index 8ee18f29d9be04a50b54c10b9f5a5eff69696008..d1674caa138cf0e56bfe188ee54c351be1d251e0 100644 (file)
@@ -11,7 +11,6 @@
  * Copyright (C) 2011 Freescale Semiconductor, Inc.
  */
 
-#include <common.h>
 #include <fuse.h>
 #include <linux/delay.h>
 #include <linux/errno.h>
index facc720c8ef20395bbef0940e1f43d40fd70a8f4..6432c62dac34b9b9289164fd8ebc081ac1ffe05c 100644 (file)
@@ -11,7 +11,6 @@
  *       etc.) which would make common driver an ifdef nightmare :-(
  */
 
-#include <common.h>
 #include <fuse.h>
 #include <linux/delay.h>
 #include <linux/errno.h>
index 79f57f57d89caad34260ce07a15685baee902d72..58bab888c3c862456948c177c5cbdc2fdb316972 100644 (file)
@@ -4,7 +4,6 @@
  * Copyright (c) 2022 Nuvoton Technology Corp.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <regmap.h>
 #include <syscon.h>
index 08029724c04097e3659077f9645c36641c4ce60b..adb6135291dcf0fe56011b9ac169b623be2fc795 100644 (file)
@@ -4,7 +4,6 @@
  */
 
 #include <clk.h>
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <fuse.h>
index daf5019d0170f3234ae110777596b108ae00dd5f..a3ca037d25f7d97da49dca8538bcff64195cb999 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2016 Stefan Roese <sr@denx.de>
  */
 
-#include <common.h>
 #include <nuvoton_nct6102d.h>
 #include <asm/io.h>
 #include <asm/pnp_def.h>
index 5a2bd1f9f72c8c2bf67b61eac55a33e207fc16ea..d0cb0a35b816246133410e60da2c66469b696eb0 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2022 Sean Anderson <sean.anderson@seco.com>
  */
 
-#include <common.h>
 #include <i2c_eeprom.h>
 #include <linker_lists.h>
 #include <misc.h>
index f24857a1515e27201ab9a642498864a43d84e701..016c807337821d4d62a3e4549a4f25b3fba71a8a 100644 (file)
@@ -8,7 +8,6 @@
 
 #define LOG_CATEGORY UCLASS_P2SB
 
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <malloc.h>
index 51f87161d5b796c496aae44249760832f4142b85..3dac6bd82e30d3416e287587d750eb740c76645e 100644 (file)
@@ -8,7 +8,6 @@
 
 #define LOG_CATEGORY UCLASS_MISC
 
-#include <common.h>
 #include <axi.h>
 #include <dm.h>
 #include <log.h>
index d80bca22a6b2fce145b34a5512d65e964b0ff74b..9f3cd14958b845ad640ef73bde960e87b468c126 100644 (file)
@@ -7,7 +7,6 @@
 
 #define LOG_CATEGORY UCLASS_P2SB
 
-#include <common.h>
 #include <dm.h>
 #include <asm/io.h>
 #include <p2sb.h>
index cdc4390f8155dcefcf1788006281b9e4904e1f34..040d0d5cf48cc0016de01b25cbfeeeb3ac347069 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2015 Stefan Roese <sr@denx.de>
  */
 
-#include <common.h>
 #include <errno.h>
 #include <i2c.h>
 #include <status_led.h>
index a0f24e1bf3a967bc544871e54a8d0d8b6cb3ddd4..bddc3c3368572eed3f48608765f5d0276125c9f2 100644 (file)
@@ -5,7 +5,6 @@
 
 #define LOG_CATEGORY UCLASS_PWRSEQ
 
-#include <common.h>
 #include <dm.h>
 #include <pwrseq.h>
 
index db98619fdf53c9b74dc3d0c3c739c4fdd974d30d..0e002ac25f48180d103ecbd982062a0dd3e54dd7 100644 (file)
@@ -6,7 +6,6 @@
 
 #define LOG_CATEGORY UCLASS_QFW
 
-#include <common.h>
 #include <acpi/acpi_table.h>
 #include <bootdev.h>
 #include <bootflow.h>
index 2f96b79ea407dd56ba1bc2ddcd4857f9168273ab..c7430147718a88c32a54424fe720b228e9aeeeda 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
  */
 
-#include <common.h>
 #include <asm/io.h>
 #include <command.h>
 #include <display_options.h>
index 4f757083a1b6d9e8152a470381022c2b2f31d4f3..2123c31038fce15dd10090773883d2cd2fc59629 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2019 Fuzhou Rockchip Electronics Co., Ltd
  */
 
-#include <common.h>
 #include <asm/io.h>
 #include <command.h>
 #include <display_options.h>
index 3ea33e46e9f23d21da6319ba671e48ea52605a30..de1c635758209d70f6dd693a9fb27e24e168f32f 100644 (file)
@@ -7,7 +7,6 @@
 
 #define LOG_CATEGORY UCLASS_MISC
 
-#include <common.h>
 #include <axi.h>
 #include <dm.h>
 #include <misc.h>
index a624a358802c7bfe1ffd7d85eb05e3afcc45ef9e..7fbcd3799e524f4e32e1496e6b8e774fe977c2d4 100644 (file)
@@ -17,7 +17,6 @@
  * Right now first 1KiB is used to store only serial number.
  */
 
-#include <common.h>
 #include <dm/device.h>
 #include <dm/read.h>
 #include <linux/bitops.h>
index 01ef1c6178fcca9c4d419528ad1486a1084f8cfe..1c61b005af3a71569027e8bd113f1e636e7c5548 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2021 Michael Walle <michael@walle.cc>
  */
 
-#include <common.h>
 #include <dm.h>
 #include <i2c.h>
 
index bda064f1365b39b01ca2bdcf3f39b08c36f2220c..1b15907b09331d1c40994409cfb512c8afad75b9 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
  */
 
-#include <common.h>
 #include <asm/io.h>
 #include <asm/pnp_def.h>
 
index 3b7b1c8bcf2ac05f186f753cb33e937f3fa30b45..6d99aa61d91d630852749bc1808737f40d1deaea 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
  */
 
-#include <common.h>
 #include <asm/io.h>
 #include <errno.h>
 #include <smsc_sio1007.h>
index 6b9701a06aee68aec7b981fdba3971831f421941..3011a22927135b6a7a2c49979d7c2f15301b8ec2 100644 (file)
@@ -4,7 +4,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <dm.h>
 #include <dt-structs.h>
 
index a6e9c03a02ecda7e36fd3d195d3504e34f49b8ae..3b1baa4f840b1ba7fad71472f0ff7ada373fa418 100644 (file)
@@ -4,8 +4,8 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <status_led.h>
+#include <linux/types.h>
 
 /*
  * The purpose of this code is to signal the operational status of a
index c1e5428a6b815eb2d5fb9a217ca8034aa466d7d3..0dd827e1dd0ea9aff6ebded2a223b0e86c0c778e 100644 (file)
@@ -6,7 +6,6 @@
 
 #define LOG_CATEGORY UCLASS_NOP
 
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <misc.h>
index 9fd6c367dc61bc4d58e5742f8cebb09648484131..34be6c28c1923984f946d95d9f12ac6cf30ff997 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
  */
 
-#include <common.h>
 #include <command.h>
 #include <fuse.h>
 #include <misc.h>
index ee5c12bd0a426cb2e68deb3f89c93b33c309a060..d4a5620c62c11b4f2069b18a68886803ac2f6c14 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <log.h>
index d5cef188d74238dc8aec6475f7302a685af75653..6adb4154c25bf3af360b0bb3ac1acd39b394b2bb 100644 (file)
@@ -4,7 +4,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <syscon.h>
index fecac9c4d902cf07cc120f6b87ca8acafd7629b3..a1585b818677849665e7a768b6dd04d79817d4a0 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2016, NVIDIA CORPORATION.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <malloc.h>
index 0ddbb3c619b22e0a3cd963f0c624cf8daa6d2145..497ec18564cca87a324954ada3d399158fdf899a 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2016, NVIDIA CORPORATION.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <dm/lists.h>
index 927618256f0ac88d73cf6e1955a8412a7101a2d0..9b1e357a1397d1b760b733c5eaaab90e545d1289 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2014 Google, Inc
  */
 
-#include <common.h>
 #include <dm.h>
 #include <dm/test.h>
 #include <asm/global_data.h>
index 6b2f17c0002d89893f1cb5e483d2535d1b8415c4..be77acbd16529d34fdbfa869bfaed849dcc5ca95 100644 (file)
@@ -4,7 +4,6 @@
  * Copyright (C) 2024 Marek BehĂșn <kabel@kernel.org>
  */
 
-#include <common.h>
 #include <console.h>
 #include <dm.h>
 #include <dm/lists.h>
index 92e92ba5e6240ddd4f58e1874e97b9b4209c74aa..daba2c2d6835d26993db40fab40746d9f8cce249 100644 (file)
@@ -10,7 +10,6 @@
  * https://patchwork.kernel.org/patch/9257715/
  */
 
-#include <common.h>
 #include <asm/gpio.h>
 #include <dm.h>
 #include <dm/device_compat.h>
index 99aad1412ae733c24dbdf796fc37108c0313563b..e7655ceff74cad28ee947c89da119c7d82210347 100644 (file)
@@ -4,7 +4,6 @@
  * Author: Liviu Dudau <liviu.dudau@foss.arm.com>
  *
  */
-#include <common.h>
 #include <dm.h>
 #include <malloc.h>
 #include <dm/read.h>
index 3838b3f74f40738bec07dd601b1512964413215f..87b9043e65c449aa641fe01cf131359eaff64a15 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2016 Stefan Roese <sr@denx.de>
  */
 
-#include <common.h>
 #include <asm/io.h>
 #include <asm/pnp_def.h>