mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-23 03:45:52 +00:00
There was a typo bug in the SRAM ranges property that causes the SRAM nodes to appear at the wrong addresses. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
20 lines
289 B
Plaintext
20 lines
289 B
Plaintext
/*
|
|
* Copyright (c) 2019, NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
soc {
|
|
sram: sram@4000000 {
|
|
ranges = <0x4000000 0x4000000 0x20000000>;
|
|
};
|
|
|
|
peripheral: peripheral@40000000 {
|
|
ranges = <0x0 0x40000000 0x10000000>;
|
|
};
|
|
};
|
|
};
|
|
|
|
#include "nxp_lpc55S6x_common.dtsi"
|