From: Heinrich Schuchardt Date: Mon, 12 Feb 2024 16:53:29 +0000 (+0100) Subject: cmd: remove common.h from exception command implementations X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=9a49f393e4d3f4e83a75bf51e8fd49a3fb615d7b;p=u-boot.git cmd: remove common.h from exception command implementations The common.h should not be used anymore. Signed-off-by: Heinrich Schuchardt Reviewed-by: Tom Rini --- diff --git a/cmd/arm/exception.c b/cmd/arm/exception.c index 522f6dff53..98a9795b68 100644 --- a/cmd/arm/exception.c +++ b/cmd/arm/exception.c @@ -5,7 +5,6 @@ * Copyright (c) 2018, Heinrich Schuchardt */ -#include #include static int do_unaligned(struct cmd_tbl *cmdtp, int flag, int argc, diff --git a/cmd/riscv/exception.c b/cmd/riscv/exception.c index f38f454a0b..14ad6c440a 100644 --- a/cmd/riscv/exception.c +++ b/cmd/riscv/exception.c @@ -5,7 +5,6 @@ * Copyright (c) 2018, Heinrich Schuchardt */ -#include #include static int do_compressed(struct cmd_tbl *cmdtp, int flag, int argc, diff --git a/cmd/sandbox/exception.c b/cmd/sandbox/exception.c index c082401ce6..cfa153da26 100644 --- a/cmd/sandbox/exception.c +++ b/cmd/sandbox/exception.c @@ -5,7 +5,6 @@ * Copyright (c) 2020, Heinrich Schuchardt */ -#include #include static int do_sigsegv(struct cmd_tbl *cmdtp, int flag, int argc, diff --git a/cmd/x86/exception.c b/cmd/x86/exception.c index 82faaa913e..14b6bd6f49 100644 --- a/cmd/x86/exception.c +++ b/cmd/x86/exception.c @@ -5,7 +5,6 @@ * Copyright (c) 2018, Heinrich Schuchardt */ -#include #include static int do_undefined(struct cmd_tbl *cmdtp, int flag, int argc,