Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lpc54114: Remove offsets_short.h inclusion. #17

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions mcux/devices/LPC54114/gcc/startup_LPC54114_cm4.S
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
#include <toolchain.h>
#include <linker/sections.h>
#include <arch/cpu.h>
#include <offsets_short.h>

#if defined(CONFIG_PLATFORM_SPECIFIC_INIT) && defined(CONFIG_SOC_LPC54114_M4)

Expand All @@ -62,7 +61,7 @@ rel_vals:
.long 0x40000800 /* cpu_ctrl */
.long 0x40000804 /* coproc_boot */
.long 0x40000808 /* coproc_stack */
.short 0x0FFF
.short 0x0FFF
.short 0x0C24

GTEXT(z_platform_init)
Expand All @@ -75,8 +74,8 @@ SECTION_FUNC(TEXT,z_platform_init)

shared_boot_entry:
ldr r6, =rel_vals
/* Flag for slave core (0) */

/* Flag for slave core (0) */
movs r4, 0
movs r5, 1

Expand Down