From 0ff1ea4ab4b5f9f1ee5c31c419bf69e8dbe1429f Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 16 Oct 2025 09:08:00 -0500 Subject: [PATCH] motorola_powerpc: Address missing field initializer warnings These were in declarations of board information structure with initialization. The initialization was changed to using named fields. Updates #5325. --- bsps/powerpc/motorola_powerpc/start/motorola.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsps/powerpc/motorola_powerpc/start/motorola.c b/bsps/powerpc/motorola_powerpc/start/motorola.c index 4533025757..24f03c2ca4 100644 --- a/bsps/powerpc/motorola_powerpc/start/motorola.c +++ b/bsps/powerpc/motorola_powerpc/start/motorola.c @@ -334,7 +334,7 @@ static const mot_info_t mot_boards[] = { {0x1E0, 0xFD, PPC_UNKNOWN, "MVME 3600 with MVME712M", NULL, NULL}, {0x1E0, 0xFE, PPC_UNKNOWN, "MVME 3600 with MVME761", NULL, NULL}, {0x1E0, 0xFF, PPC_UNKNOWN, "MVME 1600-001 or 1600-011", NULL, NULL}, - {0x000, 0x00, PPC_UNKNOWN, ""}, /* end of probeable values for automatic scan */ + {0x000, 0x00, PPC_UNKNOWN, "", NULL, NULL}, /* end of probeable values for automatic scan */ {0x000, 0x00, PPC_UNKNOWN, "MVME 2100", mvme2100_intmap, prep_pci_swizzle}, };