mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 09:07:04 +07:00
dts: vt8500: Fix invalid/missing cpu nodes for soc files.
vt8500, wm8650 and wm8850 have no cpu node specified. wm8505 has a cpu node which contains an invalid compatible string, and is missing the other required properties. Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
This commit is contained in:
parent
f722406faa
commit
7ec13d42f6
@ -11,6 +11,16 @@
|
||||
/ {
|
||||
compatible = "via,vt8500";
|
||||
|
||||
cpus {
|
||||
#address-cells = <0>;
|
||||
#size-cells = <0>;
|
||||
|
||||
cpu {
|
||||
device_type = "cpu";
|
||||
compatible = "arm,arm926ej-s";
|
||||
};
|
||||
};
|
||||
|
||||
soc {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
@ -12,8 +12,12 @@ / {
|
||||
compatible = "wm,wm8505";
|
||||
|
||||
cpus {
|
||||
cpu@0 {
|
||||
compatible = "arm,arm926ejs";
|
||||
#address-cells = <0>;
|
||||
#size-cells = <0>;
|
||||
|
||||
cpu {
|
||||
device_type = "cpu";
|
||||
compatible = "arm,arm926ej-s";
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -11,6 +11,16 @@
|
||||
/ {
|
||||
compatible = "wm,wm8650";
|
||||
|
||||
cpus {
|
||||
#address-cells = <0>;
|
||||
#size-cells = <0>;
|
||||
|
||||
cpu {
|
||||
device_type = "cpu";
|
||||
compatible = "arm,arm926ej-s";
|
||||
};
|
||||
};
|
||||
|
||||
soc {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
@ -11,6 +11,17 @@
|
||||
/ {
|
||||
compatible = "wm,wm8850";
|
||||
|
||||
cpus {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
|
||||
cpu@0 {
|
||||
device_type = "cpu";
|
||||
compatible = "arm,cortex-a9";
|
||||
reg = <0x0>;
|
||||
};
|
||||
};
|
||||
|
||||
aliases {
|
||||
serial0 = &uart0;
|
||||
serial1 = &uart1;
|
||||
|
Loading…
Reference in New Issue
Block a user