- Ensure that properties have 2 new lines when node is above it. - Enures that 1 new line is required between a node and #if/#ifdef... - Enures that 2 new line are required between #endif and node. - Wraps property values that exceed 100 characters in length. Signed-off-by: Kyle Bonnici <kylebonnici@hotmail.com>
24 lines
360 B
Plaintext
24 lines
360 B
Plaintext
/*
|
|
* Copyright (c) 2019 Lemonbeat GmbH
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <silabs/xg12/efm32jg12.dtsi>
|
|
|
|
/ {
|
|
soc {
|
|
compatible = "silabs,efm32jg12b500f1024gl125", "silabs,efm32jg12b", "silabs,efm32",
|
|
"simple-bus";
|
|
};
|
|
};
|
|
|
|
&flash0 {
|
|
reg = <0 DT_SIZE_K(1024)>;
|
|
};
|
|
|
|
&sram0 {
|
|
reg = <0x20000000 DT_SIZE_K(256)>;
|
|
};
|