From 0468aa395b62760877caa20a8dc55095090dd96e Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Fri, 28 Dec 2018 20:11:26 +0100 Subject: [PATCH] rcar_gen3: plat: Add missing platform auto-detection name Add missing TARGET_NAME for the case where RCAR_LSI is set to AUTO, which is platform auto-detection. Signed-off-by: Marek Vasut --- plat/renesas/rcar/bl2_plat_setup.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plat/renesas/rcar/bl2_plat_setup.c b/plat/renesas/rcar/bl2_plat_setup.c index 115190dc..c0e93951 100644 --- a/plat/renesas/rcar/bl2_plat_setup.c +++ b/plat/renesas/rcar/bl2_plat_setup.c @@ -74,6 +74,8 @@ extern void rcar_dma_init(void); #elif RCAR_LSI == RCAR_E3 #define TARGET_PRODUCT RCAR_PRODUCT_E3 #define TARGET_NAME "R-Car E3" +#elif RCAR_LSI == RCAR_AUTO +#define TARGET_NAME "R-Car H3/M3/M3N" #endif #if (RCAR_LSI == RCAR_E3) -- 2.30.2