mic: vop: Fix use-after-free on remove
[linux/fpc-iii.git] / drivers / of / unittest-data / overlay_bad_add_dup_prop.dts
blobc190da54f1754f77cfdee751126e57842e91312f
1 // SPDX-License-Identifier: GPL-2.0
2 /dts-v1/;
3 /plugin/;
5 /*
6  * &electric_1/motor-1 and &spin_ctrl_1 are the same node:
7  *   /testcase-data-2/substation@100/motor-1
8  *
9  * Thus the property "rpm_avail" in each fragment will
10  * result in an attempt to update the same property twice.
11  * This will result in an error and the overlay apply
12  * will fail.
13  */
15 &electric_1 {
17         motor-1 {
18                 rpm_avail = < 100 >;
19         };
22 &spin_ctrl_1 {
23                 rpm_avail = < 100 200 >;