mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
20 lines
370 B
Plaintext
20 lines
370 B
Plaintext
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
/dts-v1/;
|
||
|
/plugin/;
|
||
|
|
||
|
#include "clk-fixed-rate_test.h"
|
||
|
|
||
|
&{/} {
|
||
|
fixed_50MHz: kunit-clock {
|
||
|
compatible = "fixed-clock";
|
||
|
#clock-cells = <0>;
|
||
|
clock-frequency = <TEST_FIXED_FREQUENCY>;
|
||
|
clock-accuracy = <TEST_FIXED_ACCURACY>;
|
||
|
};
|
||
|
|
||
|
kunit-clock-consumer {
|
||
|
compatible = "test,single-clk-consumer";
|
||
|
clocks = <&fixed_50MHz>;
|
||
|
};
|
||
|
};
|