mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 05:20:58 +07:00
[POWERPC] Fix early btext debug on PowerMac
The early btext debug wouldn't work on PowerMac when booted from BootX due to the code looking for the wrong property name. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
0302f12e1c
commit
b7a2da1199
@ -186,7 +186,9 @@ int btext_initialize(struct device_node *np)
|
|||||||
pitch = *prop;
|
pitch = *prop;
|
||||||
if (pitch == 1)
|
if (pitch == 1)
|
||||||
pitch = 0x1000;
|
pitch = 0x1000;
|
||||||
prop = of_get_property(np, "address", NULL);
|
prop = of_get_property(np, "linux,bootx-addr", NULL);
|
||||||
|
if (prop == NULL)
|
||||||
|
prop = of_get_property(np, "address", NULL);
|
||||||
if (prop)
|
if (prop)
|
||||||
address = *prop;
|
address = *prop;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user