]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ARM: renesas: Drop include common.h
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sun, 21 Jan 2024 17:31:23 +0000 (18:31 +0100)
committerMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 27 Jan 2024 19:16:39 +0000 (20:16 +0100)
The header file is not necessary in either of those files,
remove it as common.h is going away.

Include missing asm/arch/rmobile.h in board/renesas/rcar-common/v3-common.c
to prevent build failure of r8a77970_eagle r8a779a0_falcon r8a77980_v3hsk
and r8a77970_v3msk .

Include missing asm/u-boot.h in falcon.c and grpeach.c to fix build failure
due to missing definition of struct bd_info . Include errno.h in grpeach.c
to fix build error due to missing definition of EINVAL.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Paul Barker <paul.barker.ct@bp.renesas.com>
38 files changed:
board/renesas/alt/alt.c
board/renesas/alt/alt_spl.c
board/renesas/alt/qos.c
board/renesas/blanche/blanche.c
board/renesas/blanche/qos.c
board/renesas/draak/draak.c
board/renesas/falcon/falcon.c
board/renesas/gose/gose.c
board/renesas/gose/gose_spl.c
board/renesas/gose/qos.c
board/renesas/grpeach/grpeach.c
board/renesas/koelsch/koelsch.c
board/renesas/koelsch/koelsch_spl.c
board/renesas/koelsch/qos.c
board/renesas/lager/lager.c
board/renesas/lager/lager_spl.c
board/renesas/lager/qos.c
board/renesas/porter/porter.c
board/renesas/porter/porter_spl.c
board/renesas/porter/qos.c
board/renesas/r2dplus/r2dplus.c
board/renesas/rcar-common/common.c
board/renesas/rcar-common/gen3-spl.c
board/renesas/rcar-common/v3-common.c
board/renesas/salvator-x/salvator-x.c
board/renesas/silk/qos.c
board/renesas/silk/silk.c
board/renesas/silk/silk_spl.c
board/renesas/spider/spider.c
board/renesas/stout/cpld.c
board/renesas/stout/qos.c
board/renesas/stout/stout.c
board/renesas/stout/stout_spl.c
board/renesas/ulcb/cpld.c
board/renesas/ulcb/ulcb.c
board/renesas/v3hsk/cpld.c
board/renesas/v3msk/cpld.c
board/renesas/whitehawk/whitehawk.c

index 85fbaf0b28b6a4e0c66580bd55ca9f323a7f0cdb..be77cade01b31628fc1912b28855430fca6c8cd4 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2014, 2015 Renesas Electronics Corporation
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <env.h>
 #include <hang.h>
index cdaa04e4f4ca44629607ce5de94ca49471f450bf..fc9dac55e6a32bc65720366c8f0c4ec15b433fd8 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <init.h>
 #include <malloc.h>
index 2f657505ceb168e768db42bb02c6ba0e592624a8..38dfa647e8186ed4e91fc87c888812c2f3701e13 100644 (file)
@@ -6,7 +6,6 @@
  *
  */
 
-#include <common.h>
 #include <asm/processor.h>
 #include <asm/mach-types.h>
 #include <asm/io.h>
index 8e1ae29e2219ec30cdd38224766f309995574938..c6ecea2afcf76002bf18aa414e09d2f33bc78a62 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2016 Renesas Electronics Corporation
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <init.h>
 #include <net.h>
index e3ad83ee0c26ab4700919df793810d48b6c0c392..3134b36a443c7e23a34ebb2047a5f0c63edc1042 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2016 Renesas Electronics Corporation
  */
 
-#include <common.h>
 #include <asm/processor.h>
 #include <asm/mach-types.h>
 #include <asm/io.h>
index 1ed72d34a74a3c0528100e4e85316687a547d800..06a3a832984ef22dc59bdcf0211d51c985df2226 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2017 Marek Vasut <marek.vasut+renesas@gmail.com>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <hang.h>
 #include <init.h>
index 0aa0f1afcbfa6c6a670c34fb11bf739cf61d728e..cd86bb3108c994225611a8e5a5f6f36017d2c81f 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2020 Renesas Electronics Corp.
  */
 
-#include <common.h>
 #include <asm/arch/rmobile.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/global_data.h>
@@ -15,6 +14,7 @@
 #include <asm/processor.h>
 #include <linux/errno.h>
 #include <asm/system.h>
+#include <asm/u-boot.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
index 2d1435acff6cdf9a544a4c9de53711aa747f5ac6..6edbdac3ded58fc614718f3b7f6fde5125fb6a55 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2014 Renesas Electronics Corporation
  */
 
-#include <common.h>
 #include <clock_legacy.h>
 #include <cpu_func.h>
 #include <env.h>
index c0bf7204439471d5a77593ae0806141481f3a733..87126a0fc152dde53b026d43125f85a90ed6467e 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <init.h>
 #include <malloc.h>
index 1c4ebfc6a8ad49f251d03ce55a6a900b10b575a7..9944df767594e3449735a2db400cc578ec8027ea 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2014 Renesas Electronics Corporation
  */
 
-#include <common.h>
 #include <asm/processor.h>
 #include <asm/mach-types.h>
 #include <asm/io.h>
index f609e4f07289c7f91df204ed6400691fec8ea5fb..c475c3f50ab3bbbe18be66ef7e8d44d8ad4e7271 100644 (file)
@@ -4,12 +4,13 @@
  * Copyright (C) Chris Brandt
  */
 
-#include <common.h>
 #include <cpu_func.h>
+#include <errno.h>
 #include <init.h>
 #include <asm/global_data.h>
 #include <asm/io.h>
 #include <asm/arch/sys_proto.h>
+#include <asm/u-boot.h>
 
 #define RZA1_WDT_BASE  0xfcfe0000
 #define WTCSR          0x00
index c3ebcd3e39fe3845936989015fd3f3ec44492efe..ee5597ad3d952a0cbe2918955cb8f2b81b6848fa 100644 (file)
@@ -6,7 +6,6 @@
  *
  */
 
-#include <common.h>
 #include <clock_legacy.h>
 #include <cpu_func.h>
 #include <env.h>
index b377f70715802a4eb3d600bcb71622373a601b0d..7581920f577182b71472e102132e65fd52959374 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <init.h>
 #include <malloc.h>
index f884e5fe65097262bccd07ebb262c27eae41c510..70cd117ba6b0a9db32d0ceaee94ef701382f2fc9 100644 (file)
@@ -6,7 +6,6 @@
  *
  */
 
-#include <common.h>
 #include <asm/processor.h>
 #include <asm/mach-types.h>
 #include <asm/io.h>
index 1437875cfa7b4f5d9bf666bc9eef53cafa18d255..0daad0b1e6ddc57318ec6ddb4c01da6ed4fd6c80 100644 (file)
@@ -7,7 +7,6 @@
  * Copyright (C) 2013 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
  */
 
-#include <common.h>
 #include <clock_legacy.h>
 #include <cpu_func.h>
 #include <env.h>
index d3d397e8f0a58e6347c785f79851480a58f967a4..df3e240599a2771129c1210f1e59e8743ea47937 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <init.h>
 #include <malloc.h>
index f01ca2fac71bfd1906f9364838e9b6f33f2000e6..ddc831c0c216ab2d91be8e383b827628a83f62e8 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2013,2014 Renesas Electronics Corporation
  */
 
-#include <common.h>
 #include <asm/processor.h>
 #include <asm/mach-types.h>
 #include <asm/io.h>
index db1fb4b035f000bb6a46dee10b42f3b6d65da469..2e6051addb1a72898830dee1d48de2b8280859ad 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2015 Cogent Embedded, Inc.
  */
 
-#include <common.h>
 #include <clock_legacy.h>
 #include <cpu_func.h>
 #include <env.h>
index 8595770c364862c4511e36ff2e2862faee217342..039fc7b719e0d67ce0c3c19d47b13a36903667bc 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <init.h>
 #include <malloc.h>
index bca54f7f74c6e959ae1ecb89c5b713d9d0a27099..e4d8f3dfafe65d6d09253549641a331ee5ecbaf4 100644 (file)
@@ -7,7 +7,6 @@
  *
  */
 
-#include <common.h>
 #include <asm/processor.h>
 #include <asm/mach-types.h>
 #include <asm/io.h>
index 4b9959a4326e76139913b4614cf01354da4a79f2..78b8cb4ac348b34bf9f6bf2a4299846feef74ad5 100644 (file)
@@ -4,7 +4,6 @@
  * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  */
 
-#include <common.h>
 #include <ide.h>
 #include <init.h>
 #include <net.h>
index ed3f093bf3c69d8216647762cd9da895120de4a6..66eb6a2002c7f71ebd48cbfa82493d39b6fa4f26 100644 (file)
@@ -7,7 +7,6 @@
  * Copyright (C) 2015 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  */
 
-#include <common.h>
 #include <dm.h>
 #include <fdt_support.h>
 #include <hang.h>
index b02a946a21dc082c1691a94a84c154c62d5e31e9..44a20cef2dfdef351632039f6793399795d0624d 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2019 Marek Vasut <marek.vasut@gmail.com>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <image.h>
 #include <init.h>
index 7c6202ea4991e0223251d4841f7889811e8b5fc9..26c589d03e96d055fc2232c67e271b4927a72de7 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright (C) 2017-2023 Marek Vasut <marek.vasut+renesas@mailbox.org>
  */
 
-#include <common.h>
 #include <clock_legacy.h>
+#include <asm/arch/rmobile.h>
 #include <asm/io.h>
 
 #define CPGWPR  0xE6150900
index 939b48ee300b6355d5404727b22b68ee5e426b25..d8312ddb8a9e242a34a7536da172a000acccb778 100644 (file)
@@ -7,7 +7,6 @@
  * Copyright (C) 2015 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <image.h>
 #include <init.h>
index 43a2989865735a02115eead4c369a494ad643855..bdd76461b6a95f0a47c77be61662b5ec739fdb2e 100644 (file)
@@ -7,7 +7,6 @@
  *
  */
 
-#include <common.h>
 #include <asm/processor.h>
 #include <asm/mach-types.h>
 #include <asm/io.h>
index 6ecebfe814df4bee19c24e427ab2bccdf4a11056..18ff75912288c6a58ed25674cffe849dd8b03612 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2015 Cogent Embedded, Inc.
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <env.h>
 #include <hang.h>
index afb9f85ffc285b76364d315fb37c9c95a8dfe432..b899442c25ae7aff40a08d44409e6c9ebacc6216 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <init.h>
 #include <malloc.h>
index fd83a72229e13a9df4019492036ce210d41806a8..1eb75a6397fa70f9c7612b6474cb78ce21dfef85 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2021 Renesas Electronics Corp.
  */
 
-#include <common.h>
 #include <asm/arch/rmobile.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/global_data.h>
index b7c75f5aa65ebc000a08d610fa2b0b32eac81082..f5bb549b7c0bf5863dd46401174336a2a1f3a63e 100644 (file)
@@ -7,7 +7,6 @@
  * Copyright (C) 2015 Cogent Embedded, Inc.
  */
 
-#include <common.h>
 #include <command.h>
 #include <cpu_func.h>
 #include <asm/io.h>
index c2f0b85387109f7a42b8b730f28eb5b55116dab6..9030ba7f61f9c85e8ea2cd16e42ef8c8d1dbbe37 100644 (file)
@@ -7,7 +7,6 @@
  * Copyright (C) 2015 Cogent Embedded, Inc.
  */
 
-#include <common.h>
 #include <asm/processor.h>
 #include <asm/mach-types.h>
 #include <asm/io.h>
index f069eccde974b89aa3eb9d2ad9fc957eab7fe8c4..131deac1c7a194a78690c78f7a9aed4f6a437db2 100644 (file)
@@ -8,7 +8,6 @@
  * Copyright (C) 2015 Cogent Embedded, Inc.
  */
 
-#include <common.h>
 #include <clock_legacy.h>
 #include <env.h>
 #include <init.h>
index c37c05571325590b29f1ac556c91c7f42bebfa04..8ec0216810684e04130dd69067a73a32349432b0 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <init.h>
 #include <malloc.h>
index 0c060a5323d8b92dbf0ead3b8db3549345188191..e72e45e3fb4eed057e3d1bc01d4354e458281cce 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2017 Cogent Embedded, Inc.
  */
 
-#include <common.h>
 #include <command.h>
 #include <asm/gpio.h>
 #include <asm/io.h>
index 1477750f9217dad560bc9e3a36d1e219ea2b52b9..b2a16b03513ef3b6c73ae682627fe9eb66ff72c9 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2017 Renesas Electronics Corporation
  */
 
-#include <common.h>
 #include <image.h>
 #include <init.h>
 #include <malloc.h>
index 6016f6daef95b330a40e638dcc30e01e83bc0fae..1272aec7302dc2f4015e2e75f555c15c3541d531 100644 (file)
@@ -7,7 +7,6 @@
  *
  */
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <i2c.h>
index aed616ac85981118c344a2b69aa564a321e5fefb..260755ac746fd6e2613037f32d326f3e36720fba 100644 (file)
@@ -7,7 +7,6 @@
  *
  */
 
-#include <common.h>
 #include <asm/gpio.h>
 #include <asm/io.h>
 #include <dm.h>
index 32284b2ecc0e8ad48feb4554be4452e27381168f..3423ebd2995c366828b6b5201a8e16d56a86f6ad 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (C) 2021 Renesas Electronics Corp.
  */
 
-#include <common.h>
 #include <asm/arch/rmobile.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/global_data.h>