Blank line between properties and subnodes. Blank line between subsequent subnodes. No blank line after subnode opening curly brace. No blank line after subnode closing curly brace. No blank line at end of file. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/r/c8a512947b22ac95f2ba40e843ecf6015814312e.1690533838.git.geert+renesas@glider.be Signed-off-by: Rob Herring <robh@kernel.org>
25 lines
389 B
Plaintext
25 lines
389 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
&unittest_test_bus {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
gpio@3 {
|
|
compatible = "unittest-gpio";
|
|
reg = <3>;
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
ngpios = <2>;
|
|
gpio-line-names = "line-A", "line-B", "line-C", "line-D";
|
|
|
|
line-d {
|
|
gpio-hog;
|
|
gpios = <4 0>;
|
|
input;
|
|
line-name = "line-D-input";
|
|
};
|
|
};
|
|
};
|