mirror of https://gitee.com/openkylin/linux.git
ARM: dts: aspeed: Fix hwrng register address
The register address should be the full address of the rng, not the
offset from the start of the SCU.
Fixes: 5daa8212c0
("ARM: dts: aspeed: Describe random number device")
Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
521ec1ca75
commit
927c2fc2db
|
@ -145,9 +145,9 @@ pinctrl: pinctrl {
|
|||
|
||||
};
|
||||
|
||||
rng: hwrng@78 {
|
||||
rng: hwrng@1e6e2078 {
|
||||
compatible = "timeriomem_rng";
|
||||
reg = <0x78 0x4>;
|
||||
reg = <0x1e6e2078 0x4>;
|
||||
period = <1>;
|
||||
quality = <100>;
|
||||
};
|
||||
|
|
|
@ -189,9 +189,9 @@ pinctrl: pinctrl {
|
|||
};
|
||||
};
|
||||
|
||||
rng: hwrng@78 {
|
||||
rng: hwrng@1e6e2078 {
|
||||
compatible = "timeriomem_rng";
|
||||
reg = <0x78 0x4>;
|
||||
reg = <0x1e6e2078 0x4>;
|
||||
period = <1>;
|
||||
quality = <100>;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue