common: Remove <common.h> and add needed includes

Remove <common.h> from all "commmon/" files and when needed add
missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini 2024-04-27 08:11:00 -06:00
parent 301bac6047
commit a79fc7a79c
89 changed files with 45 additions and 82 deletions

View file

@ -4,13 +4,14 @@
* Wolfgang Denk, DENX Software Engineering, wd@denx.de. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/ */
#include <common.h> #include <config.h>
#include <autoboot.h> #include <autoboot.h>
#include <bootretry.h> #include <bootretry.h>
#include <cli.h> #include <cli.h>
#include <command.h> #include <command.h>
#include <console.h> #include <console.h>
#include <env.h> #include <env.h>
#include <errno.h>
#include <fdtdec.h> #include <fdtdec.h>
#include <hash.h> #include <hash.h>
#include <log.h> #include <log.h>

View file

@ -6,7 +6,6 @@
#define LOG_CATEGORY LOGC_BLOBLIST #define LOG_CATEGORY LOGC_BLOBLIST
#include <common.h>
#include <bloblist.h> #include <bloblist.h>
#include <display_options.h> #include <display_options.h>
#include <log.h> #include <log.h>

View file

@ -9,7 +9,7 @@
* Marius Groeger <mgroeger@sysgo.de> * Marius Groeger <mgroeger@sysgo.de>
*/ */
#include <common.h> #include <config.h>
#include <bloblist.h> #include <bloblist.h>
#include <bootstage.h> #include <bootstage.h>
#include <clock_legacy.h> #include <clock_legacy.h>

View file

@ -1,6 +1,5 @@
// SPDX-License-Identifier: GPL-2.0+ // SPDX-License-Identifier: GPL-2.0+
#include <common.h>
#include <dm.h> #include <dm.h>
#include <init.h> #include <init.h>
#include <sysinfo.h> #include <sysinfo.h>

View file

@ -9,7 +9,7 @@
* Marius Groeger <mgroeger@sysgo.de> * Marius Groeger <mgroeger@sysgo.de>
*/ */
#include <common.h> #include <config.h>
#include <api.h> #include <api.h>
#include <bootstage.h> #include <bootstage.h>
#include <cpu_func.h> #include <cpu_func.h>

View file

@ -11,7 +11,6 @@
#define LOG_CATEGORY LOGC_BOOT #define LOG_CATEGORY LOGC_BOOT
#include <common.h>
#include <bootstage.h> #include <bootstage.h>
#include <hang.h> #include <hang.h>
#include <log.h> #include <log.h>

View file

@ -5,7 +5,6 @@
* Copyright (C) 2012 Marek Vasut <marex@denx.de> * Copyright (C) 2012 Marek Vasut <marex@denx.de>
*/ */
#include <common.h>
#include <cpu_func.h> #include <cpu_func.h>
#include <log.h> #include <log.h>
#include <malloc.h> #include <malloc.h>

View file

@ -10,7 +10,6 @@
#define pr_fmt(fmt) "cli: %s: " fmt, __func__ #define pr_fmt(fmt) "cli: %s: " fmt, __func__
#include <common.h>
#include <ansi.h> #include <ansi.h>
#include <bootstage.h> #include <bootstage.h>
#include <cli.h> #include <cli.h>

View file

@ -6,8 +6,10 @@
* Copyright 2022 Google LLC * Copyright 2022 Google LLC
*/ */
#include <common.h>
#include <cli.h> #include <cli.h>
#include <stdio.h>
#include <string.h>
#include <linux/errno.h>
/** /**
* enum cli_esc_state_t - indicates what to do with an escape character * enum cli_esc_state_t - indicates what to do with an escape character

View file

@ -75,7 +75,6 @@
#define __U_BOOT__ #define __U_BOOT__
#ifdef __U_BOOT__ #ifdef __U_BOOT__
#include <common.h> /* readline */
#include <env.h> #include <env.h>
#include <malloc.h> /* malloc, free, realloc*/ #include <malloc.h> /* malloc, free, realloc*/
#include <linux/ctype.h> /* isalpha, isdigit */ #include <linux/ctype.h> /* isalpha, isdigit */

View file

@ -8,7 +8,6 @@
* JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com> * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com>
*/ */
#include <common.h>
#include <bootretry.h> #include <bootretry.h>
#include <cli.h> #include <cli.h>
#include <command.h> #include <command.h>
@ -16,6 +15,7 @@
#include <malloc.h> #include <malloc.h>
#include <time.h> #include <time.h>
#include <watchdog.h> #include <watchdog.h>
#include <linux/errno.h>
#include <asm/global_data.h> #include <asm/global_data.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View file

@ -8,7 +8,6 @@
* JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com> * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com>
*/ */
#include <common.h>
#include <bootretry.h> #include <bootretry.h>
#include <cli.h> #include <cli.h>
#include <command.h> #include <command.h>

View file

@ -8,7 +8,7 @@
* Command Processor Table * Command Processor Table
*/ */
#include <common.h> #include <config.h>
#include <compiler.h> #include <compiler.h>
#include <command.h> #include <command.h>
#include <console.h> #include <console.h>
@ -16,6 +16,7 @@
#include <image.h> #include <image.h>
#include <log.h> #include <log.h>
#include <mapmem.h> #include <mapmem.h>
#include <time.h>
#include <asm/global_data.h> #include <asm/global_data.h>
#include <linux/ctype.h> #include <linux/ctype.h>

View file

@ -4,7 +4,6 @@
* Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
*/ */
#include <common.h>
#include <console.h> #include <console.h>
#include <debug_uart.h> #include <debug_uart.h>
#include <display_options.h> #include <display_options.h>

View file

@ -8,7 +8,6 @@
* Software Foundation. * Software Foundation.
*/ */
#include <common.h>
#include <cros_ec.h> #include <cros_ec.h>
#include <dm.h> #include <dm.h>
#include <errno.h> #include <errno.h>

View file

@ -3,8 +3,8 @@
* Copyright 2008-2014 Freescale Semiconductor, Inc. * Copyright 2008-2014 Freescale Semiconductor, Inc.
*/ */
#include <common.h>
#include <ddr_spd.h> #include <ddr_spd.h>
#include <stdio.h>
/* used for ddr1 and ddr2 spd */ /* used for ddr1 and ddr2 spd */
static int static int

View file

@ -10,7 +10,6 @@
* Lukasz Majewski <l.majewski@samsung.com> * Lukasz Majewski <l.majewski@samsung.com>
*/ */
#include <common.h>
#include <command.h> #include <command.h>
#include <log.h> #include <log.h>
#include <watchdog.h> #include <watchdog.h>

View file

@ -12,7 +12,6 @@
#define DEBUG #define DEBUG
#endif #endif
#include <common.h>
#include <log.h> #include <log.h>
#include <asm/global_data.h> #include <asm/global_data.h>

View file

@ -9,7 +9,6 @@
* Copyright (C) Nalin Dahyabhai <bigfun@pobox.com> * Copyright (C) Nalin Dahyabhai <bigfun@pobox.com>
*/ */
#include <common.h>
#include <edid.h> #include <edid.h>
#include <errno.h> #include <errno.h>
#include <fdtdec.h> #include <fdtdec.h>

View file

@ -6,7 +6,8 @@
* Igor Grinberg <grinberg@compulab.co.il> * Igor Grinberg <grinberg@compulab.co.il>
*/ */
#include <common.h> #include <stdio.h>
#include <vsprintf.h>
#include <linux/string.h> #include <linux/string.h>
#include <eeprom_field.h> #include <eeprom_field.h>

View file

@ -6,8 +6,8 @@
* Igor Grinberg <grinberg@compulab.co.il> * Igor Grinberg <grinberg@compulab.co.il>
*/ */
#include <common.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/string.h>
#include <eeprom_layout.h> #include <eeprom_layout.h>
#include <eeprom_field.h> #include <eeprom_field.h>

View file

@ -9,13 +9,13 @@
#define LOG_CATEGORY LOGC_EVENT #define LOG_CATEGORY LOGC_EVENT
#include <common.h>
#include <event.h> #include <event.h>
#include <event_internal.h> #include <event_internal.h>
#include <log.h> #include <log.h>
#include <linker_lists.h> #include <linker_lists.h>
#include <malloc.h> #include <malloc.h>
#include <asm/global_data.h> #include <asm/global_data.h>
#include <linux/errno.h>
#include <linux/list.h> #include <linux/list.h>
#include <relocate.h> #include <relocate.h>

View file

@ -1,4 +1,3 @@
#include <common.h>
#include <command.h> #include <command.h>
#include <exports.h> #include <exports.h>
#include <malloc.h> #include <malloc.h>

View file

@ -6,10 +6,10 @@
/* #define DEBUG */ /* #define DEBUG */
#include <common.h>
#include <flash.h> #include <flash.h>
#include <log.h> #include <log.h>
#include <uuid.h> #include <uuid.h>
#include <linux/string.h>
#include <mtd/cfi_flash.h> #include <mtd/cfi_flash.h>

View file

@ -10,7 +10,6 @@
*/ */
#ifndef USE_HOSTCC #ifndef USE_HOSTCC
#include <common.h>
#include <command.h> #include <command.h>
#include <env.h> #include <env.h>
#include <log.h> #include <log.h>

View file

@ -10,7 +10,6 @@
#ifndef HWCONFIG_TEST #ifndef HWCONFIG_TEST
#include <config.h> #include <config.h>
#include <common.h>
#include <env.h> #include <env.h>
#include <exports.h> #include <exports.h>
#include <hwconfig.h> #include <hwconfig.h>

View file

@ -6,7 +6,7 @@
* Written by Simon Glass <sjg@chromium.org> * Written by Simon Glass <sjg@chromium.org>
*/ */
#include <common.h> #include <config.h>
#include <bootstage.h> #include <bootstage.h>
#include <init.h> #include <init.h>
#include <asm/global_data.h> #include <asm/global_data.h>

View file

@ -5,9 +5,9 @@
* Copyright 2018 Google, Inc * Copyright 2018 Google, Inc
*/ */
#include <common.h>
#include <handoff.h> #include <handoff.h>
#include <asm/global_data.h> #include <asm/global_data.h>
#include <asm/u-boot.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View file

@ -4,7 +4,6 @@
* Gary Jennejohn, DENX Software Engineering GmbH, garyj@denx.de. * Gary Jennejohn, DENX Software Engineering GmbH, garyj@denx.de.
*/ */
#include <common.h>
#include <console.h> #include <console.h>
#include <serial.h> #include <serial.h>
#include <malloc.h> #include <malloc.h>

View file

@ -5,7 +5,6 @@
#define IOTRACE_IMPL #define IOTRACE_IMPL
#include <common.h>
#include <mapmem.h> #include <mapmem.h>
#include <time.h> #include <time.h>
#include <asm/global_data.h> #include <asm/global_data.h>

View file

@ -5,7 +5,6 @@
* Licensed under the GPL-2 or later. * Licensed under the GPL-2 or later.
*/ */
#include <common.h>
/* We need the weak marking as this symbol is provided specially */ /* We need the weak marking as this symbol is provided specially */
extern const char system_map[] __attribute__((weak)); extern const char system_map[] __attribute__((weak));

View file

@ -87,7 +87,6 @@
* *
****************************************************************************/ ****************************************************************************/
#include <common.h>
#include <asm/ptrace.h> #include <asm/ptrace.h>
#include <kgdb.h> #include <kgdb.h>

View file

@ -7,7 +7,6 @@
* Licensed under the GPL-2 or later. * Licensed under the GPL-2 or later.
*/ */
#include <common.h>
#include <cpu_func.h> #include <cpu_func.h>
#include <kgdb.h> #include <kgdb.h>
#include <serial.h> #include <serial.h>

View file

@ -6,7 +6,6 @@
* Written by Simon Glass <sjg@chromium.org> * Written by Simon Glass <sjg@chromium.org>
*/ */
#include <common.h>
#include <display_options.h> #include <display_options.h>
#include <log.h> #include <log.h>
#include <malloc.h> #include <malloc.h>

View file

@ -6,7 +6,6 @@
* Written by Simon Glass <sjg@chromium.org> * Written by Simon Glass <sjg@chromium.org>
*/ */
#include <common.h>
#include <log.h> #include <log.h>
#include <asm/global_data.h> #include <asm/global_data.h>

View file

@ -5,7 +5,6 @@
* Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de> * Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
*/ */
#include <common.h>
#include <log.h> #include <log.h>
#include <net.h> #include <net.h>
#include <asm/global_data.h> #include <asm/global_data.h>

View file

@ -6,7 +6,6 @@
/* #define DEBUG */ /* #define DEBUG */
#include <common.h>
#include <autoboot.h> #include <autoboot.h>
#include <button.h> #include <button.h>
#include <bootstage.h> #include <bootstage.h>

View file

@ -7,7 +7,6 @@
#define LOG_CATEGORY LOGC_ALLOC #define LOG_CATEGORY LOGC_ALLOC
#include <common.h>
#include <log.h> #include <log.h>
#include <malloc.h> #include <malloc.h>
#include <mapmem.h> #include <mapmem.h>

View file

@ -4,7 +4,7 @@
* Wolfgang Denk, DENX Software Engineering, wd@denx.de. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/ */
#include <common.h> #include <config.h>
#include <init.h> #include <init.h>
#include <asm/global_data.h> #include <asm/global_data.h>
#include <cpu_func.h> #include <cpu_func.h>

View file

@ -5,7 +5,6 @@
*/ */
#include <ansi.h> #include <ansi.h>
#include <common.h>
#include <cli.h> #include <cli.h>
#include <malloc.h> #include <malloc.h>
#include <errno.h> #include <errno.h>

View file

@ -9,7 +9,6 @@
* channel. * channel.
*/ */
#include <common.h>
#include <dm.h> #include <dm.h>
#include <log.h> #include <log.h>
#include <miiphy.h> #include <miiphy.h>

View file

@ -4,7 +4,6 @@
* Wolfgang Denk, DENX Software Engineering, wd@denx.de. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/ */
#include <common.h>
#include <s_record.h> #include <s_record.h>
static int hex1_bin (char c); static int hex1_bin (char c);

View file

@ -4,10 +4,11 @@
* *
*/ */
#include <common.h>
#include <scp03.h> #include <scp03.h>
#include <tee.h> #include <tee.h>
#include <tee/optee_ta_scp03.h> #include <tee/optee_ta_scp03.h>
#include <linux/errno.h>
#include <linux/string.h>
static int scp03_enable(bool provision) static int scp03_enable(bool provision)
{ {

View file

@ -6,7 +6,7 @@
* Aneesh V <aneesh@ti.com> * Aneesh V <aneesh@ti.com>
*/ */
#include <common.h> #include <config.h>
#include <bloblist.h> #include <bloblist.h>
#include <binman_sym.h> #include <binman_sym.h>
#include <bootstage.h> #include <bootstage.h>

View file

@ -9,7 +9,6 @@
* Copyright (C) 2017 Theobroma Systems Design und Consulting GmbH * Copyright (C) 2017 Theobroma Systems Design und Consulting GmbH
*/ */
#include <common.h>
#include <atf_common.h> #include <atf_common.h>
#include <cpu_func.h> #include <cpu_func.h>
#include <errno.h> #include <errno.h>

View file

@ -5,7 +5,6 @@
* *
*/ */
#include <common.h>
#include <spl.h> #include <spl.h>
#include <spl_load.h> #include <spl_load.h>
#include <image.h> #include <image.h>

View file

@ -3,7 +3,6 @@
* Copyright (C) 2017 Theobroma Systems Design und Consulting GmH * Copyright (C) 2017 Theobroma Systems Design und Consulting GmH
*/ */
#include <common.h>
#include <spl.h> #include <spl.h>
__weak int board_return_to_bootrom(struct spl_image_info *spl_image, __weak int board_return_to_bootrom(struct spl_image_info *spl_image,

View file

@ -5,7 +5,6 @@
* *
* Ravi B <ravibabu@ti.com> * Ravi B <ravibabu@ti.com>
*/ */
#include <common.h>
#include <env.h> #include <env.h>
#include <spl.h> #include <spl.h>
#include <linux/compiler.h> #include <linux/compiler.h>

View file

@ -1,6 +1,5 @@
// SPDX-License-Identifier: GPL-2.0+ // SPDX-License-Identifier: GPL-2.0+
#include <common.h>
#include <env.h> #include <env.h>
#include <part.h> #include <part.h>
#include <spl.h> #include <spl.h>

View file

@ -8,7 +8,6 @@
* FAT Image Functions copied from spl_mmc.c * FAT Image Functions copied from spl_mmc.c
*/ */
#include <common.h>
#include <env.h> #include <env.h>
#include <log.h> #include <log.h>
#include <spl.h> #include <spl.h>

View file

@ -4,7 +4,6 @@
* Written by Simon Glass <sjg@chromium.org> * Written by Simon Glass <sjg@chromium.org>
*/ */
#include <common.h>
#include <errno.h> #include <errno.h>
#include <fpga.h> #include <fpga.h>
#include <gzip.h> #include <gzip.h>

View file

@ -4,7 +4,6 @@
*/ */
#define LOG_CATEGORY LOGC_ARCH #define LOG_CATEGORY LOGC_ARCH
#include <common.h>
#include <stdlib.h> #include <stdlib.h>
#include <errno.h> #include <errno.h>
#include <imx_container.h> #include <imx_container.h>

View file

@ -3,7 +3,6 @@
* Copyright (C) 2020 Stefan Roese <sr@denx.de> * Copyright (C) 2020 Stefan Roese <sr@denx.de>
*/ */
#include <common.h>
#include <image.h> #include <image.h>
#include <log.h> #include <log.h>
#include <malloc.h> #include <malloc.h>

View file

@ -5,7 +5,6 @@
* *
* Aneesh V <aneesh@ti.com> * Aneesh V <aneesh@ti.com>
*/ */
#include <common.h>
#include <dm.h> #include <dm.h>
#include <log.h> #include <log.h>
#include <part.h> #include <part.h>

View file

@ -3,7 +3,6 @@
* Copyright (C) 2011 * Copyright (C) 2011
* Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de> * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
*/ */
#include <common.h>
#include <config.h> #include <config.h>
#include <fdt_support.h> #include <fdt_support.h>
#include <image.h> #include <image.h>

View file

@ -6,7 +6,6 @@
* (C) Copyright 2012 * (C) Copyright 2012
* Ilya Yanok <ilya.yanok@gmail.com> * Ilya Yanok <ilya.yanok@gmail.com>
*/ */
#include <common.h>
#include <env.h> #include <env.h>
#include <errno.h> #include <errno.h>
#include <image.h> #include <image.h>

View file

@ -3,7 +3,7 @@
* Copyright (C) 2012 Stefan Roese <sr@denx.de> * Copyright (C) 2012 Stefan Roese <sr@denx.de>
*/ */
#include <common.h> #include <config.h>
#include <image.h> #include <image.h>
#include <imx_container.h> #include <imx_container.h>
#include <log.h> #include <log.h>

View file

@ -5,7 +5,6 @@
* *
*/ */
#include <common.h>
#include <spl.h> #include <spl.h>
#include <nvme.h> #include <nvme.h>

View file

@ -7,7 +7,6 @@
* Copyright (C) 2011 * Copyright (C) 2011
* Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de> * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
*/ */
#include <common.h>
#include <config.h> #include <config.h>
#include <image.h> #include <image.h>
#include <log.h> #include <log.h>

View file

@ -5,7 +5,6 @@
* *
* Based on common/spl/spl_atf.c * Based on common/spl/spl_atf.c
*/ */
#include <common.h>
#include <cpu_func.h> #include <cpu_func.h>
#include <errno.h> #include <errno.h>
#include <hang.h> #include <hang.h>

View file

@ -9,7 +9,6 @@
* Michal Simek <michal.simek@amd.com> * Michal Simek <michal.simek@amd.com>
* Stefan Agner <stefan.agner@toradex.com> * Stefan Agner <stefan.agner@toradex.com>
*/ */
#include <common.h>
#include <binman_sym.h> #include <binman_sym.h>
#include <image.h> #include <image.h>
#include <log.h> #include <log.h>

View file

@ -8,7 +8,6 @@
* Derived work from spl_usb.c * Derived work from spl_usb.c
*/ */
#include <common.h>
#include <spl.h> #include <spl.h>
#include <asm/u-boot.h> #include <asm/u-boot.h>
#include <sata.h> #include <sata.h>

View file

@ -4,7 +4,6 @@
* Author: Stefan Agner <stefan.agner@toradex.com> * Author: Stefan Agner <stefan.agner@toradex.com>
*/ */
#include <common.h>
#include <log.h> #include <log.h>
#include <spl.h> #include <spl.h>
#include <usb.h> #include <usb.h>

View file

@ -3,7 +3,6 @@
* Copyright (C) 2022 Sean Anderson <sean.anderson@seco.com> * Copyright (C) 2022 Sean Anderson <sean.anderson@seco.com>
*/ */
#include <common.h>
#include <image.h> #include <image.h>
#include <log.h> #include <log.h>
#include <semihosting.h> #include <semihosting.h>

View file

@ -8,7 +8,7 @@
* Heiko Schocher, DENX Software Engineering, hs@denx.de. * Heiko Schocher, DENX Software Engineering, hs@denx.de.
*/ */
#include <common.h> #include <config.h>
#include <image.h> #include <image.h>
#include <imx_container.h> #include <imx_container.h>
#include <log.h> #include <log.h>

View file

@ -4,7 +4,6 @@
* Ladislav Michl <ladis@linux-mips.org> * Ladislav Michl <ladis@linux-mips.org>
*/ */
#include <common.h>
#include <config.h> #include <config.h>
#include <image.h> #include <image.h>
#include <nand.h> #include <nand.h>

View file

@ -8,7 +8,6 @@
* Derived work from spl_mmc.c * Derived work from spl_mmc.c
*/ */
#include <common.h>
#include <log.h> #include <log.h>
#include <spl.h> #include <spl.h>
#include <asm/u-boot.h> #include <asm/u-boot.h>

View file

@ -4,7 +4,7 @@
* Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics. * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
*/ */
#include <common.h> #include <config.h>
#include <image.h> #include <image.h>
#include <log.h> #include <log.h>
#include <spl.h> #include <spl.h>

View file

@ -8,7 +8,6 @@
* *
* Matt Porter <mporter@ti.com> * Matt Porter <mporter@ti.com>
*/ */
#include <common.h>
#include <gzip.h> #include <gzip.h>
#include <image.h> #include <image.h>
#include <log.h> #include <log.h>

View file

@ -20,11 +20,12 @@
* *
*/ */
#include <common.h>
#include <display_options.h> #include <display_options.h>
#include <env.h> #include <env.h>
#include <splash.h> #include <splash.h>
#include <video.h> #include <video.h>
#include <vsprintf.h>
#include <linux/kernel.h>
static struct splash_location default_splash_locations[] = { static struct splash_location default_splash_locations[] = {
{ {

View file

@ -5,7 +5,6 @@
* Authors: Igor Grinberg <grinberg@compulab.co.il> * Authors: Igor Grinberg <grinberg@compulab.co.il>
*/ */
#include <common.h>
#include <bmp_layout.h> #include <bmp_layout.h>
#include <command.h> #include <command.h>
#include <env.h> #include <env.h>

View file

@ -3,7 +3,6 @@
* Copyright 2021 Broadcom * Copyright 2021 Broadcom
*/ */
#include <common.h>
#include <asm/global_data.h> #include <asm/global_data.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View file

@ -9,7 +9,6 @@
*/ */
#include <config.h> #include <config.h>
#include <common.h>
#include <dm.h> #include <dm.h>
#include <errno.h> #include <errno.h>
#include <log.h> #include <log.h>

View file

@ -6,7 +6,6 @@
* Bartlomiej Sieka <tur@semihalf.com> * Bartlomiej Sieka <tur@semihalf.com>
*/ */
#include <common.h>
#include <cpu_func.h> #include <cpu_func.h>
#include <image.h> #include <image.h>
#include <linux/printk.h> #include <linux/printk.h>

View file

@ -25,7 +25,6 @@
* *
* For each transfer (except "Interrupt") we wait for completion. * For each transfer (except "Interrupt") we wait for completion.
*/ */
#include <common.h>
#include <command.h> #include <command.h>
#include <dm.h> #include <dm.h>
#include <dm/device_compat.h> #include <dm/device_compat.h>

View file

@ -21,7 +21,6 @@
* Probes device for being a hub and configurate it * Probes device for being a hub and configurate it
*/ */
#include <common.h>
#include <command.h> #include <command.h>
#include <dm.h> #include <dm.h>
#include <env.h> #include <env.h>
@ -29,6 +28,7 @@
#include <log.h> #include <log.h>
#include <malloc.h> #include <malloc.h>
#include <memalign.h> #include <memalign.h>
#include <time.h>
#include <asm/processor.h> #include <asm/processor.h>
#include <asm/unaligned.h> #include <asm/unaligned.h>
#include <linux/ctype.h> #include <linux/ctype.h>

View file

@ -6,7 +6,6 @@
* Part of this source has been derived from the Linux USB * Part of this source has been derived from the Linux USB
* project. * project.
*/ */
#include <common.h>
#include <console.h> #include <console.h>
#include <dm.h> #include <dm.h>
#include <env.h> #include <env.h>
@ -15,6 +14,7 @@
#include <malloc.h> #include <malloc.h>
#include <memalign.h> #include <memalign.h>
#include <stdio_dev.h> #include <stdio_dev.h>
#include <time.h>
#include <watchdog.h> #include <watchdog.h>
#include <asm/byteorder.h> #include <asm/byteorder.h>
#ifdef CONFIG_SANDBOX #ifdef CONFIG_SANDBOX

View file

@ -7,7 +7,6 @@
* Mostly inspired by Linux kernel v6.1 onboard_usb_hub driver * Mostly inspired by Linux kernel v6.1 onboard_usb_hub driver
*/ */
#include <common.h>
#include <dm.h> #include <dm.h>
#include <dm/device_compat.h> #include <dm/device_compat.h>
#include <power/regulator.h> #include <power/regulator.h>

View file

@ -32,7 +32,6 @@
*/ */
#include <common.h>
#include <blk.h> #include <blk.h>
#include <bootdev.h> #include <bootdev.h>
#include <command.h> #include <command.h>

View file

@ -21,12 +21,13 @@
* *
*========================================================================== *==========================================================================
*/ */
#include <common.h>
#include <xyzModem.h> #include <xyzModem.h>
#include <stdarg.h> #include <stdarg.h>
#include <time.h>
#include <u-boot/crc.h> #include <u-boot/crc.h>
#include <watchdog.h> #include <watchdog.h>
#include <env.h> #include <env.h>
#include <vsprintf.h>
/* Assumption - run xyzModem protocol over the console port */ /* Assumption - run xyzModem protocol over the console port */

View file

@ -74,6 +74,8 @@
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
#include <linux/types.h>
/******************************************************************************* /*******************************************************************************
* Structure used for telling the next BL how much of a particular type of * Structure used for telling the next BL how much of a particular type of
* memory is available for its use and how much is already used. * memory is available for its use and how much is already used.

View file

@ -12,6 +12,7 @@
#define __AUTOBOOT_H #define __AUTOBOOT_H
#include <stdbool.h> #include <stdbool.h>
#include <stddef.h>
#ifdef CONFIG_SANDBOX #ifdef CONFIG_SANDBOX

View file

@ -10,6 +10,8 @@
#ifndef _BMP_H_ #ifndef _BMP_H_
#define _BMP_H_ #define _BMP_H_
#include <linux/compiler.h>
struct __packed bmp_color_table_entry { struct __packed bmp_color_table_entry {
__u8 blue; __u8 blue;
__u8 green; __u8 green;

View file

@ -6,6 +6,8 @@
#ifndef _DDR_SPD_H_ #ifndef _DDR_SPD_H_
#define _DDR_SPD_H_ #define _DDR_SPD_H_
#include <linux/types.h>
/* /*
* Format from "JEDEC Standard No. 21-C, * Format from "JEDEC Standard No. 21-C,
* Appendix D: Rev 1.0: SPD's for DDR SDRAM * Appendix D: Rev 1.0: SPD's for DDR SDRAM

View file

@ -7,6 +7,8 @@
#ifndef _FLASH_H_ #ifndef _FLASH_H_
#define _FLASH_H_ #define _FLASH_H_
#include <linux/types.h>
/*----------------------------------------------------------------------- /*-----------------------------------------------------------------------
* FLASH Info: contains chip specific data, per FLASH bank * FLASH Info: contains chip specific data, per FLASH bank
*/ */

View file

@ -7,6 +7,8 @@
#ifndef __GZIP_H #ifndef __GZIP_H
#define __GZIP_H #define __GZIP_H
#include <linux/types.h>
struct blk_desc; struct blk_desc;
/** /**

View file

@ -10,6 +10,7 @@
#if CONFIG_IS_ENABLED(HANDOFF) #if CONFIG_IS_ENABLED(HANDOFF)
#include <linux/types.h>
#include <asm/handoff.h> #include <asm/handoff.h>
/** /**

View file

@ -8,8 +8,6 @@
#ifndef _NAND_H_ #ifndef _NAND_H_
#define _NAND_H_ #define _NAND_H_
#include <config.h>
extern void nand_init(void); extern void nand_init(void);
void nand_reinit(void); void nand_reinit(void);
unsigned long nand_size(void); unsigned long nand_size(void);

View file

@ -4,6 +4,8 @@
* Wolfgang Denk, DENX Software Engineering, wd@denx.de. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/ */
#include <linux/types.h>
/*-------------------------------------------------------------------------- /*--------------------------------------------------------------------------
* *
* Motorola S-Record Format: * Motorola S-Record Format: