Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.17-rc3 28 lines 643 B view raw
1// SPDX-License-Identifier: GPL-2.0 2/dts-v1/; 3/plugin/; 4 5#include "clk_parent_data_test.h" 6 7&{/} { 8 fixed_50: kunit-clock-50MHz { 9 compatible = "fixed-clock"; 10 #clock-cells = <0>; 11 clock-frequency = <50000000>; 12 clock-output-names = CLK_PARENT_DATA_50MHZ_NAME; 13 }; 14 15 fixed_parent: kunit-clock-1MHz { 16 compatible = "fixed-clock"; 17 #clock-cells = <0>; 18 clock-frequency = <1000000>; 19 clock-output-names = CLK_PARENT_DATA_1MHZ_NAME; 20 }; 21 22 kunit-clock-controller { 23 compatible = "test,clk-parent-data"; 24 clocks = <&fixed_parent>, <&fixed_50>; 25 clock-names = CLK_PARENT_DATA_PARENT1, CLK_PARENT_DATA_PARENT2; 26 #clock-cells = <1>; 27 }; 28};