Skip to content

Commit 64289f0

Browse files
AHBSRAM1 -> AHBSRAM
1 parent 714eeb3 commit 64289f0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_LPCTarget/lpc17_emac.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ struct lpc_enetdata {
127127

128128
#if defined(TARGET_LPC17XX)
129129
# if defined(TOOLCHAIN_GCC_ARM) || defined(TOOLCHAIN_ARM)
130-
# define ETHMEM_SECTION __attribute__((section("AHBSRAM1"),aligned))
130+
# define ETHMEM_SECTION __attribute__((section("AHBSRAM"),aligned))
131131
# endif
132132
#endif
133133

connectivity/lwipstack/lwip-sys/arch/cc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ void trace_to_ascii_hex_dump(char* prefix, int len, char *data);
136136
# elif defined(TOOLCHAIN_GCC_CR)
137137
# define MEMP_SECTION __attribute__((section(".data.$RamPeriph32")))
138138
# else
139-
# define MEMP_SECTION __attribute__((section("AHBSRAM1"),aligned))
139+
# define MEMP_SECTION __attribute__((section("AHBSRAM"),aligned))
140140
# endif
141141
#endif
142142
#endif

connectivity/netsocket/tests/emac_test_utils/emac_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
control */
3131
#ifndef ETHMEM_SECTION
3232
#if defined(TARGET_LPC1768)
33-
#define ETHMEM_SECTION __attribute__((section("AHBSRAM1"),aligned))
33+
#define ETHMEM_SECTION __attribute__((section("AHBSRAM"),aligned))
3434
#endif
3535
#endif
3636

0 commit comments

Comments
 (0)