[PATCH] cmd: remove common.h from exception command implementations

The common.h should not be used anymore.
Signed-off-by: Heinrich Schuchardt heinrich.schuchardt@canonical.com --- cmd/arm/exception.c | 1 - cmd/riscv/exception.c | 1 - cmd/sandbox/exception.c | 1 - cmd/x86/exception.c | 1 - 4 files changed, 4 deletions(-)
diff --git a/cmd/arm/exception.c b/cmd/arm/exception.c index 522f6dff53f..98a9795b68c 100644 --- a/cmd/arm/exception.c +++ b/cmd/arm/exception.c @@ -5,7 +5,6 @@ * Copyright (c) 2018, Heinrich Schuchardt xypron.glpk@gmx.de */
-#include <common.h> #include <command.h>
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 f38f454a0b1..14ad6c440a5 100644 --- a/cmd/riscv/exception.c +++ b/cmd/riscv/exception.c @@ -5,7 +5,6 @@ * Copyright (c) 2018, Heinrich Schuchardt xypron.glpk@gmx.de */
-#include <common.h> #include <command.h>
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 c082401ce6b..cfa153da260 100644 --- a/cmd/sandbox/exception.c +++ b/cmd/sandbox/exception.c @@ -5,7 +5,6 @@ * Copyright (c) 2020, Heinrich Schuchardt xypron.glpk@gmx.de */
-#include <common.h> #include <command.h>
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 82faaa913e5..14b6bd6f493 100644 --- a/cmd/x86/exception.c +++ b/cmd/x86/exception.c @@ -5,7 +5,6 @@ * Copyright (c) 2018, Heinrich Schuchardt xypron.glpk@gmx.de */
-#include <common.h> #include <command.h>
static int do_undefined(struct cmd_tbl *cmdtp, int flag, int argc,

On Mon, Feb 12, 2024 at 05:53:29PM +0100, Heinrich Schuchardt wrote:
The common.h should not be used anymore.
Signed-off-by: Heinrich Schuchardt heinrich.schuchardt@canonical.com
Reviewed-by: Tom Rini trini@konsulko.com

On Mon, Feb 12, 2024 at 05:53:29PM +0100, Heinrich Schuchardt wrote:
The common.h should not be used anymore.
Signed-off-by: Heinrich Schuchardt heinrich.schuchardt@canonical.com Reviewed-by: Tom Rini trini@konsulko.com
Applied to u-boot/next, thanks!
participants (2)
-
Heinrich Schuchardt
-
Tom Rini