mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
beatnik: 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:
committed by
Kinsey Moore
parent
190899ee61
commit
2999ec8607
@@ -74,14 +74,14 @@ read_us_timer(void);
|
||||
|
||||
/* motload memory map */
|
||||
static struct bankdesc mvme5500Flash[] = {
|
||||
{ 0, 2 }, /* first entry gives number of entries */
|
||||
{ 0, 2, 0, 0, NULL, 0, 0, 0 }, /* first entry gives number of entries */
|
||||
{ 0xf2000000, 0x08000000, 0x20000*2, 2, BSP_flash_vendor_intel, 0, 0, 0, },
|
||||
{ 0xff800000, 0x00800000, 0x20000*2, 2, BSP_flash_vendor_intel, 0, 0, 0, },
|
||||
};
|
||||
|
||||
/* motload memory map */
|
||||
static struct bankdesc mvme6100Flash[] = {
|
||||
{ 0, 2 }, /* first entry gives number of entries */
|
||||
{ 0, 2, 0, 0, NULL, 0, 0, 0 }, /* first entry gives number of entries */
|
||||
{ 0xf4000000, 0x04000000, 0x20000*2, 2, BSP_flash_vendor_intel, 0, 0, 0, },
|
||||
{ 0xf8000000, 0x04000000, 0x20000*2, 2, BSP_flash_vendor_intel, 0, 0, 0, },
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user