summaryrefslogtreecommitdiff
path: root/drivers/of/unittest-data/overlay_bad_symbol.dts
diff options
context:
space:
mode:
authorFrank Rowand <frank.rowand@sony.com>2018-02-12 00:23:45 -0800
committerFrank Rowand <frowand.list@gmail.com>2018-03-04 00:29:34 -0800
commitdb2f3762d609318ebef601dcaf8630032587c13a (patch)
tree99b380c0e8358d86590318b5ec8a2af2f9128247 /drivers/of/unittest-data/overlay_bad_symbol.dts
parent93a6039000b5acab0dba31784f2e305bc5d0661e (diff)
of: convert unittest overlay devicetree source to sugar syntax
The unittest-data overlays have been pulled into proper overlay devicetree source files without changing their format. The next step is to convert them to use sugar syntax instead of hand coding overlay fragments structure. A few of the overlays can not be converted because they test absolute target paths in the overlay fragment. dtc does not generate this type of target: overlay_0.dts overlay_1.dts overlay_12.dts overlay_13.dts Two pre-existing unittest overlay devicetree source files are also converted: overlay_bad_phandle.dts overlay_bad_symbol.dts Signed-off-by: Frank Rowand <frank.rowand@sony.com>
Diffstat (limited to 'drivers/of/unittest-data/overlay_bad_symbol.dts')
-rw-r--r--drivers/of/unittest-data/overlay_bad_symbol.dts25
1 files changed, 9 insertions, 16 deletions
diff --git a/drivers/of/unittest-data/overlay_bad_symbol.dts b/drivers/of/unittest-data/overlay_bad_symbol.dts
index 135052ee1517..98c6d1de144a 100644
--- a/drivers/of/unittest-data/overlay_bad_symbol.dts
+++ b/drivers/of/unittest-data/overlay_bad_symbol.dts
@@ -2,22 +2,15 @@
/dts-v1/;
/plugin/;
-/ {
+&electric_1 {
- fragment@0 {
- target = <&electric_1>;
-
- __overlay__ {
-
- // This label should cause an error when the overlay
- // is applied. There is already a symbol hvac_1
- // in the base tree
- hvac_1: hvac-medium-2 {
- compatible = "ot,hvac-medium";
- heat-range = < 50 75 >;
- cool-range = < 60 80 >;
- };
-
- };
+ // This label should cause an error when the overlay
+ // is applied. There is already a symbol hvac_1
+ // in the base tree
+ hvac_1: hvac-medium-2 {
+ compatible = "ot,hvac-medium";
+ heat-range = < 50 75 >;
+ cool-range = < 60 80 >;
};
+
};