1
0
mirror of https://xff.cz/git/u-boot/ synced 2026-02-17 19:09:28 +01:00

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

Remove <common.h> from all sh architecture 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:10:55 -06:00
parent bac5d1b68a
commit 5c4bcc7c73
9 changed files with 3 additions and 9 deletions

View File

@@ -4,7 +4,6 @@
* (C) Copyright 2007 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
*/
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/cache.h>

View File

@@ -4,7 +4,6 @@
* Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
*/
#include <common.h>
#include <command.h>
#include <irq_func.h>
#include <cpu_func.h>

View File

@@ -4,7 +4,6 @@
* Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
*/
#include <common.h>
#include <irq_func.h>
int interrupt_init(void)

View File

@@ -1,6 +1,5 @@
// SPDX-License-Identifier: GPL-2.0+
#include <common.h>
#include <cpu_func.h>
#include <asm/processor.h>
#include <asm/system.h>

View File

@@ -3,7 +3,7 @@
* Copyright (C) 2016 Vladimir Zapolskiy <vz@mleia.com>
*/
#include <common.h>
#include <config.h>
#include <init.h>
#include <asm/global_data.h>

View File

@@ -7,7 +7,7 @@
* (c) Copyright 2008 Renesas Solutions Corp.
*/
#include <common.h>
#include <config.h>
#include <bootm.h>
#include <command.h>
#include <env.h>

View File

@@ -10,7 +10,6 @@
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/
#include <common.h>
#include <init.h>
#include <asm/processor.h>
#include <asm/io.h>

View File

@@ -7,7 +7,6 @@
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/
#include <common.h>
#include <init.h>
#include <time.h>
#include <asm/io.h>

View File

@@ -9,10 +9,10 @@
* Linux SuperH zImage loading and boot
*/
#include <common.h>
#include <command.h>
#include <env.h>
#include <irq_func.h>
#include <vsprintf.h>
#include <asm/io.h>
#include <asm/zimage.h>