mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
of: unittest-data: Fix whitespace - angular brackets
No space after opening or before closing angular bracket. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/r/af37e6e73f16d0240a2a1696e21d1d6a3c423ba4.1690533838.git.geert+renesas@glider.be Signed-off-by: Rob Herring <robh@kernel.org>
This commit is contained in:
parent
367dcb4876
commit
58ec916803
6 changed files with 40 additions and 40 deletions
|
@ -7,8 +7,8 @@
|
||||||
|
|
||||||
hvac_2: hvac-large-1 {
|
hvac_2: hvac-large-1 {
|
||||||
compatible = "ot,hvac-large";
|
compatible = "ot,hvac-large";
|
||||||
heat-range = < 40 75 >;
|
heat-range = <40 75>;
|
||||||
cool-range = < 65 80 >;
|
cool-range = <65 80>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -23,11 +23,11 @@
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
|
|
||||||
track@30 {
|
track@30 {
|
||||||
incline-up = < 48 32 16 >;
|
incline-up = <48 32 16>;
|
||||||
};
|
};
|
||||||
|
|
||||||
track@40 {
|
track@40 {
|
||||||
incline-up = < 47 31 15 >;
|
incline-up = <47 31 15>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -35,22 +35,22 @@
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
compatible = "ot,ferris-wheel";
|
compatible = "ot,ferris-wheel";
|
||||||
reg = < 0x00000200 0x100 >;
|
reg = <0x00000200 0x100>;
|
||||||
hvac-provider = < &hvac_2 >;
|
hvac-provider = <&hvac_2>;
|
||||||
hvac-thermostat = < 27 32 > ;
|
hvac-thermostat = <27 32> ;
|
||||||
hvac-zones = < 12 5 >;
|
hvac-zones = <12 5>;
|
||||||
hvac-zone-names = "operator", "snack-bar";
|
hvac-zone-names = "operator", "snack-bar";
|
||||||
spin-controller = < &spin_ctrl_1 3 >;
|
spin-controller = <&spin_ctrl_1 3>;
|
||||||
spin-rph = < 30 >;
|
spin-rph = <30>;
|
||||||
gondolas = < 16 >;
|
gondolas = <16>;
|
||||||
gondola-capacity = < 6 >;
|
gondola-capacity = <6>;
|
||||||
|
|
||||||
ride_200_left: track@10 {
|
ride_200_left: track@10 {
|
||||||
reg = < 0x00000010 0x10 >;
|
reg = <0x00000010 0x10>;
|
||||||
};
|
};
|
||||||
|
|
||||||
ride_200_right: track@20 {
|
ride_200_right: track@20 {
|
||||||
reg = < 0x00000020 0x10 >;
|
reg = <0x00000020 0x10>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -58,5 +58,5 @@
|
||||||
&lights_2 {
|
&lights_2 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
color = "purple", "white", "red", "green";
|
color = "purple", "white", "red", "green";
|
||||||
rate = < 3 256 >;
|
rate = <3 256>;
|
||||||
};
|
};
|
||||||
|
|
|
@ -15,13 +15,13 @@
|
||||||
&electric_1 {
|
&electric_1 {
|
||||||
motor-1 {
|
motor-1 {
|
||||||
controller {
|
controller {
|
||||||
power_bus = < 0x1 0x2 >;
|
power_bus = <0x1 0x2>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&spin_ctrl_1 {
|
&spin_ctrl_1 {
|
||||||
controller {
|
controller {
|
||||||
power_bus_emergency = < 0x101 0x102 >;
|
power_bus_emergency = <0x101 0x102>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,13 +26,13 @@
|
||||||
&electric_1 {
|
&electric_1 {
|
||||||
motor-1 {
|
motor-1 {
|
||||||
electric {
|
electric {
|
||||||
rpm_avail = < 100 >;
|
rpm_avail = <100>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&spin_ctrl_1 {
|
&spin_ctrl_1 {
|
||||||
electric {
|
electric {
|
||||||
rpm_avail = < 100 200 >;
|
rpm_avail = <100 200>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
// is applied. There is already a phandle value
|
// is applied. There is already a phandle value
|
||||||
// in the base tree for motor-1.
|
// in the base tree for motor-1.
|
||||||
spin_ctrl_1_conflict: motor-1 {
|
spin_ctrl_1_conflict: motor-1 {
|
||||||
accelerate = < 3 >;
|
accelerate = <3>;
|
||||||
decelerate = < 5 >;
|
decelerate = <5>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
// in the base tree
|
// in the base tree
|
||||||
hvac_1: hvac-medium-2 {
|
hvac_1: hvac-medium-2 {
|
||||||
compatible = "ot,hvac-medium";
|
compatible = "ot,hvac-medium";
|
||||||
heat-range = < 50 75 >;
|
heat-range = <50 75>;
|
||||||
cool-range = < 60 80 >;
|
cool-range = <60 80>;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -16,19 +16,19 @@
|
||||||
|
|
||||||
electric_1: substation@100 {
|
electric_1: substation@100 {
|
||||||
compatible = "ot,big-volts-control";
|
compatible = "ot,big-volts-control";
|
||||||
reg = < 0x00000100 0x100 >;
|
reg = <0x00000100 0x100>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
|
|
||||||
hvac_1: hvac-medium-1 {
|
hvac_1: hvac-medium-1 {
|
||||||
compatible = "ot,hvac-medium";
|
compatible = "ot,hvac-medium";
|
||||||
heat-range = < 50 75 >;
|
heat-range = <50 75>;
|
||||||
cool-range = < 60 80 >;
|
cool-range = <60 80>;
|
||||||
};
|
};
|
||||||
|
|
||||||
spin_ctrl_1: motor-1 {
|
spin_ctrl_1: motor-1 {
|
||||||
compatible = "ot,ferris-wheel-motor";
|
compatible = "ot,ferris-wheel-motor";
|
||||||
spin = "clockwise";
|
spin = "clockwise";
|
||||||
rpm_avail = < 50 >;
|
rpm_avail = <50>;
|
||||||
};
|
};
|
||||||
|
|
||||||
spin_ctrl_2: motor-8 {
|
spin_ctrl_2: motor-8 {
|
||||||
|
@ -41,27 +41,27 @@
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
compatible = "ot,rides";
|
compatible = "ot,rides";
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
orientation = < 127 >;
|
orientation = <127>;
|
||||||
|
|
||||||
ride@100 {
|
ride@100 {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
compatible = "ot,roller-coaster";
|
compatible = "ot,roller-coaster";
|
||||||
reg = < 0x00000100 0x100 >;
|
reg = <0x00000100 0x100>;
|
||||||
hvac-provider = < &hvac_1 >;
|
hvac-provider = <&hvac_1>;
|
||||||
hvac-thermostat = < 29 > ;
|
hvac-thermostat = <29> ;
|
||||||
hvac-zones = < 14 >;
|
hvac-zones = <14>;
|
||||||
hvac-zone-names = "operator";
|
hvac-zone-names = "operator";
|
||||||
spin-controller = < &spin_ctrl_2 5 &spin_ctrl_2 7 >;
|
spin-controller = <&spin_ctrl_2 5 &spin_ctrl_2 7>;
|
||||||
spin-controller-names = "track_1", "track_2";
|
spin-controller-names = "track_1", "track_2";
|
||||||
queues = < 2 >;
|
queues = <2>;
|
||||||
|
|
||||||
track@30 {
|
track@30 {
|
||||||
reg = < 0x00000030 0x10 >;
|
reg = <0x00000030 0x10>;
|
||||||
};
|
};
|
||||||
|
|
||||||
track@40 {
|
track@40 {
|
||||||
reg = < 0x00000040 0x10 >;
|
reg = <0x00000040 0x10>;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -69,19 +69,19 @@
|
||||||
|
|
||||||
lights_1: lights@30000 {
|
lights_1: lights@30000 {
|
||||||
compatible = "ot,work-lights";
|
compatible = "ot,work-lights";
|
||||||
reg = < 0x00030000 0x1000 >;
|
reg = <0x00030000 0x1000>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
lights_2: lights@40000 {
|
lights_2: lights@40000 {
|
||||||
compatible = "ot,show-lights";
|
compatible = "ot,show-lights";
|
||||||
reg = < 0x00040000 0x1000 >;
|
reg = <0x00040000 0x1000>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
rate = < 13 138 >;
|
rate = <13 138>;
|
||||||
};
|
};
|
||||||
|
|
||||||
retail_1: vending@50000 {
|
retail_1: vending@50000 {
|
||||||
reg = < 0x00050000 0x1000 >;
|
reg = <0x00050000 0x1000>;
|
||||||
compatible = "ot,tickets";
|
compatible = "ot,tickets";
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue