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)
goto unknown;
#define p pkt->L4_Pack.L4_Data.L4_PPCPack
/* Must be 32-bit memory address */
if (!((p.PPCData[0] == 2) && (p.PPCData[1] == 32)))
/* Must be 32-bit system address */
if (!((p.PPCData[0] == 3) && (p.PPCData[1] == 32)))
goto unknown;
/* 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