mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
lantiq: dts: fix vmmc unit and register address
The register address is the same for danube und vr9. The register size is 0x400 byte for danube and 0x300 byte for vr9. The change doesn't have an impact as the vmmc driver doesn't use the devicetree and has hardcoded register offsets. Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
parent
5eb7e513a5
commit
85debe661e
@ -85,7 +85,7 @@
|
||||
vmmc: vmmc@107000 {
|
||||
status = "disabled";
|
||||
compatible = "lantiq,vmmc-xway";
|
||||
reg = <0x103000 0x400>;
|
||||
reg = <0x107000 0x400>;
|
||||
interrupt-parent = <&icu0>;
|
||||
interrupts = <150 151 152 153 154 155>;
|
||||
};
|
||||
|
@ -92,10 +92,10 @@
|
||||
reg = <0x106a00 0x200>;
|
||||
};
|
||||
|
||||
vmmc: vmmc@103000 {
|
||||
vmmc: vmmc@107000 {
|
||||
status = "disabled";
|
||||
compatible = "lantiq,vmmc-xway";
|
||||
reg = <0x103000 0x400>;
|
||||
reg = <0x107000 0x300>;
|
||||
interrupt-parent = <&icu0>;
|
||||
interrupts = <150 151 152 153 154 155>;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user