diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-12 19:03:58 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-10-24 16:34:45 -0400 |
commit | 8991fed97dbd5fe79354b533b32c78742a126d02 (patch) | |
tree | 765abd03321f62d779040d00bc40ad9a6fcb1e90 /arch/mips/lib/traps.c | |
parent | 577dddb5b7d6e0f962ea06ed80b85bc6ec5ca7d8 (diff) |
mips: Remove common.h usage
We can remove common.h from most cases of the code here, and only a few
places need an additional header instead.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/mips/lib/traps.c')
-rw-r--r-- | arch/mips/lib/traps.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/lib/traps.c b/arch/mips/lib/traps.c index 7a682f256a6..40469d1be09 100644 --- a/arch/mips/lib/traps.c +++ b/arch/mips/lib/traps.c @@ -10,9 +10,9 @@ * Copyright (C) 2014, Imagination Technologies Ltd. */ -#include <common.h> #include <asm/global_data.h> #include <asm/ptrace.h> +#include <config.h> #include <cpu_func.h> #include <hang.h> #include <init.h> @@ -20,6 +20,7 @@ #include <asm/mipsregs.h> #include <asm/addrspace.h> #include <asm/system.h> +#include <asm/u-boot.h> DECLARE_GLOBAL_DATA_PTR; |