Commit 19dc772a authored by Thierry Reding's avatar Thierry Reding

arm64: tegra: Fix compatible string for EQOS on Tegra194

The EQOS Ethernet controller found on Tegra194 is compatible with its
predecessor or Tegra186. However, it is an established practice to add
a compatible string for the most recent generation of the SoC as well,
just in case some incompatibilities or bugs are later discovered.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 44ff822c
...@@ -39,7 +39,8 @@ gpio: gpio@2200000 { ...@@ -39,7 +39,8 @@ gpio: gpio@2200000 {
}; };
ethernet@2490000 { ethernet@2490000 {
compatible = "nvidia,tegra186-eqos", compatible = "nvidia,tegra194-eqos",
"nvidia,tegra186-eqos",
"snps,dwc-qos-ethernet-4.10"; "snps,dwc-qos-ethernet-4.10";
reg = <0x02490000 0x10000>; reg = <0x02490000 0x10000>;
interrupts = <GIC_SPI 194 IRQ_TYPE_LEVEL_HIGH>; interrupts = <GIC_SPI 194 IRQ_TYPE_LEVEL_HIGH>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment