grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v6 10/11] RISC-V: Add to build system


From: Daniel Kiper
Subject: Re: [PATCH v6 10/11] RISC-V: Add to build system
Date: Mon, 18 Feb 2019 21:14:25 +0100
User-agent: NeoMutt/20170113 (1.7.2)

On Tue, Feb 12, 2019 at 11:31:07AM +0100, Alexander Graf wrote:
> This patch adds support for RISC-V to the grub build system. With this
> patch, I can successfully build grub on RISC-V as a UEFI application.
>
> Signed-off-by: Alexander Graf <address@hidden>
> Reviewed-by: Alistair Francis <address@hidden>
> Reviewed-by: Bin Meng <address@hidden>
> Tested-by: Bin Meng <address@hidden>

Reviewed-by: Daniel Kiper <address@hidden>

But two nitpicks below...

[...]

> diff --git a/grub-core/kern/emu/cache.c b/grub-core/kern/emu/cache.c
> index 6f89e871a..113682cc4 100644
> --- a/grub-core/kern/emu/cache.c
> +++ b/grub-core/kern/emu/cache.c
> @@ -25,5 +25,11 @@ grub_arch_sync_caches (void *address, grub_size_t len)
>    return _flush_cache (address, len, 0);
>  }
>
> +#elif defined(__riscv)
> +void
> +grub_arch_sync_caches (void *address, grub_size_t len)
> +{
> +}
> +

Redundant empty line.

>  #endif
>
> diff --git a/grub-core/kern/emu/cache_s.S b/grub-core/kern/emu/cache_s.S
> index 76cf7560d..e27b865f9 100644
> --- a/grub-core/kern/emu/cache_s.S
> +++ b/grub-core/kern/emu/cache_s.S
> @@ -9,6 +9,7 @@
>  #elif defined(__powerpc__)
>  #include "../powerpc/cache.S"
>  #elif defined(__ia64__) || defined(__arm__) || defined(__aarch64__) || 
> defined(__mips__)
> +#elif defined(__riscv)

Why not

#elif defined(__ia64__) || defined(__arm__) || defined(__aarch64__) || \
      defined(__mips__) || defined(__riscv)?

>  #else
>  #error "No target cpu type is defined"
>  #endif

Daniel



reply via email to

[Prev in Thread] Current Thread [Next in Thread]