From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sean Anderson Date: Tue, 31 Dec 2019 17:44:57 -0500 Subject: [PATCH 03/11] riscv: Add headers for asm/global_data.h In-Reply-To: <29dd818b-dff7-a44d-1e6c-493726d68f93@gmail.com> References: <29dd818b-dff7-a44d-1e6c-493726d68f93@gmail.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This header depended on bd_t and ulong, but did not include the appropriate headers. Signed-off-by: Sean Anderson --- arch/riscv/include/asm/global_data.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/riscv/include/asm/global_data.h b/arch/riscv/include/asm/global_data.h index b74bd7e738..4f0c12b402 100644 --- a/arch/riscv/include/asm/global_data.h +++ b/arch/riscv/include/asm/global_data.h @@ -11,6 +11,8 @@ #define __ASM_GBL_DATA_H #include +#include +#include /* Architecture-specific global data */ struct arch_global_data { -- 2.24.1