aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2005-05-31 03:01:11 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-31 11:26:05 -0400
commit05fda3b1d88ebac1fc866fc3ed5b7ef5a4672fa6 (patch)
tree11f504429d5e6708259f376b76e96cafd3bf9215
parent5e485b7975472ba4a408523deb6541e70c451842 (diff)
[PATCH] ppc64: actually call prom_send_capabilities
When I sent in the patch adding the code for the kernel to tell the firmware about its capabilities on pSeries machines, I included the function to give the capabilities to firmware but somehow forgot the hunk that adds the call to the new function. This patch adds the call. Signed-off-by: Paul Mackerras <paulus@samba.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--arch/ppc64/kernel/prom_init.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/ppc64/kernel/prom_init.c b/arch/ppc64/kernel/prom_init.c
index 6f79b7b9b445..bc53967a8643 100644
--- a/arch/ppc64/kernel/prom_init.c
+++ b/arch/ppc64/kernel/prom_init.c
@@ -1881,6 +1881,12 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, unsigned long
1881 &getprop_rval, sizeof(getprop_rval)); 1881 &getprop_rval, sizeof(getprop_rval));
1882 1882
1883 /* 1883 /*
1884 * On pSeries, inform the firmware about our capabilities
1885 */
1886 if (RELOC(of_platform) & PLATFORM_PSERIES)
1887 prom_send_capabilities();
1888
1889 /*
1884 * On pSeries, copy the CPU hold code 1890 * On pSeries, copy the CPU hold code
1885 */ 1891 */
1886 if (RELOC(of_platform) & PLATFORM_PSERIES) 1892 if (RELOC(of_platform) & PLATFORM_PSERIES)