diff options
author | Rob Herring <robh@kernel.org> | 2018-03-05 20:29:46 +0100 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2018-03-05 20:29:46 +0100 |
commit | b46c78661c42cb8b07eb213104c79cbab8ea7e0d (patch) | |
tree | 332c5b04b1d8c64831780b2188833720b4f3c1ac /drivers/of/unittest-data/overlay_0.dts | |
parent | gpio: Support gpio nexus dt bindings (diff) | |
parent | of: improve reporting invalid overlay target path (diff) | |
download | linux-b46c78661c42cb8b07eb213104c79cbab8ea7e0d.tar.xz linux-b46c78661c42cb8b07eb213104c79cbab8ea7e0d.zip |
Merge tag 'overlay_apply_fdt_v7-for-4.17' of git://git.kernel.org/pub/scm/linux/kernel/git/frowand/linux into dt/next
DT overlay applying rework from Frank Rowand:
"Move duplicating and unflattening of an overlay flattened devicetree
(FDT) into the overlay application code. To accomplish this,
of_overlay_apply() is replaced by of_overlay_fdt_apply()."
Diffstat (limited to 'drivers/of/unittest-data/overlay_0.dts')
-rw-r--r-- | drivers/of/unittest-data/overlay_0.dts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/of/unittest-data/overlay_0.dts b/drivers/of/unittest-data/overlay_0.dts new file mode 100644 index 000000000000..ac0f9e0fe65f --- /dev/null +++ b/drivers/of/unittest-data/overlay_0.dts @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0 +/dts-v1/; +/plugin/; + +/ { + /* overlay_0 - enable using absolute target path */ + + fragment@0 { + target-path = "/testcase-data/overlay-node/test-bus/test-unittest0"; + __overlay__ { + status = "okay"; + }; + }; +}; |