[PATCH] Fix pSeries identification in prom_init.c
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 15 May 2006 05:46:03 +0000 (15:46 +1000)
committerPaul Mackerras <paulus@samba.org>
Tue, 16 May 2006 11:31:25 +0000 (21:31 +1000)
commitcb6b2eb9bcf2f61e84dc0b55ef7e3d4923842313
tree71d42f762163a309e804193efd3f0674c3e57dbb
parent3de620e8394406fd01f450b8c6e3e74464e81a78
[PATCH] Fix pSeries identification in prom_init.c

The OF trampoline code prom_init.c still needs to identify IBM pSeries
(PAPR) machines in order to run some platform specific code on them like
instanciating the TCE tables. The code doing that detection was changed
recently in 2.6.17 early stages but was done slightly incorrectly. It
should be testing for an exact match of "chrp" and it currently tests
for anything that begins with "chrp". That means it will incorrectly
match with platforms using Maple-like device-trees and have open
firmware. This fixes it by using strcmp instead of strncmp to match what
the actual platform detection code does.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/kernel/prom_init.c