powerpc/shared/.../uart.c: Address missing field initializer warnings

This was in a structure describing Flash memory configuration.
The initialization was changed to using named fields.

Updates #5325.
This commit is contained in:
Joel Sherrill
2025-10-16 09:14:45 -05:00
committed by Kinsey Moore
parent 6900b048d8
commit ebcfc3db27
2 changed files with 4 additions and 4 deletions

View File

@@ -167,13 +167,13 @@ static struct devdesc intelDevs[] = {
{ 0x0017, "J3 64Mb", 8*1024*1024, 0x20, 0x20000 },
{ 0x0018, "J3 128Mb", 16*1024*1024, 0x20, 0x20000 },
{ 0x001d, "J3 256Mb", 32*1024*1024, 0x20, 0x20000 },
{ 0, 0, 0, 0}
{ 0, 0, 0, 0, 0 }
};
struct vendesc BSP_flash_vendor_intel[] =
{
{ 0x89, "Intel", intelDevs, &intelOps },
{ 0, 0}
{ 0, 0, 0, 0 }
};
/********* Helper Subroutines ******************/

View File

@@ -123,12 +123,12 @@ static struct devdesc spansionDevs[] = {
{ 0x007e2101, "S29GL128N", 0x01000000, 32, 0x20000 }, /* 16MB */
{ 0x007e2201, "S29GL256N", 0x02000000, 32, 0x20000 }, /* 32MB */
{ 0x007e2301, "S29GL512N", 0x04000000, 32, 0x20000 }, /* 64MB */
{ 0, 0, 0, 0}
{ 0, 0, 0, 0, 0 }
};
struct vendesc BSP_flash_vendor_spansion[] = {
{ 0x01, "Spansion/AMD", spansionDevs, &spansionOps },
{ 0, 0}
{ 0, 0, 0, 0 }
};
/********* Register Definitions ****************/