mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 18:04:48 +00:00
sandbox: Audit config.h and common.h usage
Remove and replace common.h and config.h in sandbox when it's not needed and add some explicit includes where needed. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
7776960f4d
commit
460b2c068c
13 changed files with 6 additions and 13 deletions
|
@ -3,7 +3,6 @@
|
|||
* Copyright 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <cpu_func.h>
|
||||
#include <asm/state.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
|
||||
#define LOG_CATEGORY LOGC_SANDBOX
|
||||
|
||||
#include <common.h>
|
||||
#include <bootstage.h>
|
||||
#include <cpu_func.h>
|
||||
#include <errno.h>
|
||||
|
|
|
@ -72,7 +72,7 @@ static struct sdl_info {
|
|||
static void sandbox_sdl_poll_events(void)
|
||||
{
|
||||
/*
|
||||
* We don't want to include common.h in this file since it uses
|
||||
* We don't want to include cpu_func.h in this file since it uses
|
||||
* system headers. So add a declation here.
|
||||
*/
|
||||
extern void reset_cpu(void);
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
* Copyright (c) 2016 Google, Inc
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <dm.h>
|
||||
#include <hang.h>
|
||||
#include <handoff.h>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Copyright (c) 2011-2012 The Chromium OS Authors.
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <config.h>
|
||||
#include <cli.h>
|
||||
#include <command.h>
|
||||
#include <efi_loader.h>
|
||||
|
|
|
@ -3,9 +3,8 @@
|
|||
* Copyright (c) 2011-2012 The Chromium OS Authors.
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <autoboot.h>
|
||||
#include <bloblist.h>
|
||||
#include <config.h>
|
||||
#include <errno.h>
|
||||
#include <fdtdec.h>
|
||||
#include <log.h>
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
#ifndef __SANDBOX_ASM_IO_H
|
||||
#define __SANDBOX_ASM_IO_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
enum sandboxio_size_t {
|
||||
SB_SIZE_8,
|
||||
SB_SIZE_16,
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
#ifndef __SANDBOX_STATE_H
|
||||
#define __SANDBOX_STATE_H
|
||||
|
||||
#include <config.h>
|
||||
#include <sysreset.h>
|
||||
#include <stdbool.h>
|
||||
#include <linux/list.h>
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
* Copyright (c) 2015 Sjoerd Simons <sjoerd.simons@collabora.co.uk>
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <bootstage.h>
|
||||
#include <image.h>
|
||||
#include <asm/io.h>
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
#define LOG_CATEGORY LOGC_ARCH
|
||||
|
||||
#include <common.h>
|
||||
#include <fdt_support.h>
|
||||
#include <log.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
* found in the LICENSE file.
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <efi_loader.h>
|
||||
#include <irq_func.h>
|
||||
#include <os.h>
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
* IO space access commands.
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <command.h>
|
||||
#include <dm.h>
|
||||
#include <log.h>
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
* Copyright (c) 2011 The Chromium OS Authors.
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <addr_map.h>
|
||||
#include <config.h>
|
||||
#include <cpu_func.h>
|
||||
#include <cros_ec.h>
|
||||
#include <dm.h>
|
||||
|
|
Loading…
Add table
Reference in a new issue