dts: lpc55S6x: Add back the USB SRAM region

USB SRAM region was accidentally deleted by an earlier
commit. Rename the memory region used by USB to USB_SRAM instead
of SRAM4. SRAM4 was the wrong name for this region.

Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>
This commit is contained in:
Mahesh Mahadevan 2022-08-23 16:30:59 -05:00 committed by Carles Cufí
commit 32e2e1cb79
2 changed files with 11 additions and 5 deletions

View file

@ -10,7 +10,7 @@ GROUP_START(USB_BDT)
{
. = ALIGN(512);
*(m_usb_bdt)
} GROUP_LINK_IN(SRAM4)
} GROUP_LINK_IN(USB_SRAM)
GROUP_END(USB_BDT)
@ -19,6 +19,6 @@ GROUP_START(USB_GLOBAL)
SECTION_PROLOGUE(_USB_GLOBAL_SECTION_NAME,(NOLOAD),)
{
*(m_usb_global)
} GROUP_LINK_IN(SRAM4)
} GROUP_LINK_IN(USB_SRAM)
GROUP_END(USB_GLOBAL)