aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-10-24 01:21:52 -0400
committerStephen Rothwell <sfr@canb.auug.org.au>2005-10-24 01:42:24 -0400
commit7c7eb28481a038c3859a0efcf38ac5b642aca212 (patch)
tree29870ade1049ce3849d9c08a02619b3ef1eb669c
parent6fdf5392caa4c3cba65add0a4beec9f5eb96b723 (diff)
powerpc: iseries: Fix a bogus comment
A comment in lpevents.c refers to code that's actually in HvCallEvent.h. The code in HvCallEvent.h is pretty obvious, so just remove the comment altogether. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
-rw-r--r--arch/powerpc/platforms/iseries/lpevents.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/powerpc/platforms/iseries/lpevents.c b/arch/powerpc/platforms/iseries/lpevents.c
index f8b4155b0481..54c7753dbe05 100644
--- a/arch/powerpc/platforms/iseries/lpevents.c
+++ b/arch/powerpc/platforms/iseries/lpevents.c
@@ -184,11 +184,7 @@ void setup_hvlpevent_queue(void)
184{ 184{
185 void *eventStack; 185 void *eventStack;
186 186
187 /* 187 /* Allocate a page for the Event Stack. */
188 * Allocate a page for the Event Stack. The Hypervisor needs the
189 * absolute real address, so we subtract out the KERNELBASE and add
190 * in the absolute real address of the kernel load area.
191 */
192 eventStack = alloc_bootmem_pages(LpEventStackSize); 188 eventStack = alloc_bootmem_pages(LpEventStackSize);
193 memset(eventStack, 0, LpEventStackSize); 189 memset(eventStack, 0, LpEventStackSize);
194 190