Skip to content

Commit

Permalink
powerpc: dts: akebono: Harmonize EHCI/OHCI DT nodes name
Browse files Browse the repository at this point in the history
In accordance with the Generic EHCI/OHCI bindings the corresponding node
name is suppose to comply with the Generic USB HCD DT schema, which
requires the USB nodes to have the name acceptable by the regexp:
"^usb(@.*)?" . Make sure the "generic-ehci" and "generic-ohci"-compatible
nodes are correctly named.

Signed-off-by: Serge Semin <[email protected]>
Acked-by: Krzysztof Kozlowski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
fancer authored and gregkh committed Mar 2, 2024
1 parent 55c3d03 commit 19e7b35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/powerpc/boot/dts/akebono.dts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
interrupts = <93 2>;
};

EHCI0: ehci@30010000000 {
EHCI0: usb@30010000000 {
compatible = "ibm,476gtr-ehci", "generic-ehci";
reg = <0x300 0x10000000 0x0 0x10000>;
interrupt-parent = <&MPIC>;
Expand All @@ -140,14 +140,14 @@
interrupt-parent = <&MPIC>;
};

OHCI0: ohci@30010010000 {
OHCI0: usb@30010010000 {
compatible = "ibm,476gtr-ohci", "generic-ohci";
reg = <0x300 0x10010000 0x0 0x10000>;
interrupt-parent = <&MPIC>;
interrupts = <89 1>;
};

OHCI1: ohci@30010020000 {
OHCI1: usb@30010020000 {
compatible = "ibm,476gtr-ohci", "generic-ohci";
reg = <0x300 0x10020000 0x0 0x10000>;
interrupt-parent = <&MPIC>;
Expand Down

0 comments on commit 19e7b35

Please sign in to comment.