Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.1.
 1// SPDX-License-Identifier: GPL-2.0-or-later OR BSD-2-Clause
 2
 3/ {
 4	cpus {
 5		#address-cells = <1>;
 6		#size-cells = <0>;
 7
 8		cpu@0 {
 9			device_type = "cpu";
10			compatible = "mips,mips4KEc";
11			reg = <0>;
12			clocks = <&baseclk 0>;
13			clock-names = "cpu";
14		};
15	};
16
17	baseclk: baseclk {
18		compatible = "fixed-clock";
19		#clock-cells = <0>;
20		clock-frequency = <500000000>;
21	};
22};