Fix board DTS coding style issues to prevent them from spreading when a new board is introduced and uses an existing DTS as a referance. Issues addressed from Zephyr devicetree style guidelines [1]: - Don’t insert empty lines before a deindenting };. - Insert a single empty line to separate nodes at the same hierarchy level. - status is "okay" by default. - compatible property comes first in node. - reg property comes second in node. - status property comes last in node. - the rest of the properties within are nodes naturally sorted. - child nodes are sorted by address or alphabetically if there is no address. No functional change. Link: https://docs.zephyrproject.org/latest/contribute/style/devicetree.html [1] Signed-off-by: Yishai Jaffe <yishai1999@gmail.com>
14 lines
296 B
Text
14 lines
296 B
Text
/*
|
|
* Copyright (c) 2019 Lemonbeat GmbH
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <silabs/efm32jg12b500f1024gl125.dtsi>
|
|
#include "slstk3402a_common.dtsi"
|
|
|
|
/ {
|
|
model = "Silicon Labs EFM32JG12 STK3402A board ";
|
|
compatible = "silabs,slstk3402a_jg", "silabs,efm32jg12b";
|
|
};
|