Commit b210f57c authored by Tom Rini's avatar Tom Rini

ppc32: The ISA PIC address for int-ack wasn't being picked out right

Signed-off-by: default avatarLeigh Brown <leigh@solinno.co.uk>
Signed-off-by: default avatarTom Rini <trini@kernel.crashing.org>
parent 331c2b9d
...@@ -935,8 +935,8 @@ unsigned int __init residual_isapic_addr(void) ...@@ -935,8 +935,8 @@ unsigned int __init residual_isapic_addr(void)
goto unknown; goto unknown;
#define p pkt->L4_Pack.L4_Data.L4_PPCPack #define p pkt->L4_Pack.L4_Data.L4_PPCPack
/* Must be 32-bit memory address */ /* Must be 32-bit system address */
if (!((p.PPCData[0] == 2) && (p.PPCData[1] == 32))) if (!((p.PPCData[0] == 3) && (p.PPCData[1] == 32)))
goto unknown; goto unknown;
/* It doesn't seem to work where length != 1 (what can I say? :-/ ) */ /* It doesn't seem to work where length != 1 (what can I say? :-/ ) */
......
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