mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 20:45:09 +00:00
Fix DTC warnings caused by flexspi and sram node definitions. Signed-off-by: Declan Snyder <declan.snyder@nxp.com>
23 lines
326 B
Plaintext
23 lines
326 B
Plaintext
/*
|
|
* Copyright (c) 2022, NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
|
|
/ {
|
|
soc {
|
|
sram: sram@20000000 {
|
|
ranges = <0x0 0x0 0x500000
|
|
0x20000000 0x20000000 0x500000>;
|
|
};
|
|
|
|
peripheral: peripheral@40000000 {
|
|
ranges = <0x0 0x40000000 0x10000000>;
|
|
};
|
|
};
|
|
};
|
|
|
|
#include "nxp_rt5xx_common.dtsi"
|