xref: /aosp_15_r20/external/dtc/tests/phandle-args-overflow.dts (revision cd60bc56d4bea3af4ec04523e4d71c2b272c8aff)
1/dts-v1/;
2
3/*
4 * https://github.com/dgibson/dtc/issues/64
5 *
6 * Certain dtc versions had a bug where this input caused an infinite
7 * loop in check_property_phandle_args().
8 *
9 */
10
11/ {
12    clocks = <&ref &ref>;
13
14    ref: poc {
15        phandle = <1>;
16        #clock-cells = <0xffffffff>;
17    };
18};
19