Commit 38fcdcfe authored by Michael Ellerman's avatar Michael Ellerman Committed by Paul Mackerras

[PATCH] ppc64: Cleanup whitespace in arch/ppc64/kernel/ItLpQueue.c

Just cleanup white space.
Signed-off-by: default avatarMichael Ellerman <michael@ellerman.id.au>
Acked-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 9b047020
...@@ -76,13 +76,13 @@ static struct HvLpEvent * get_next_hvlpevent(void) ...@@ -76,13 +76,13 @@ static struct HvLpEvent * get_next_hvlpevent(void)
{ {
struct HvLpEvent * nextLpEvent = struct HvLpEvent * nextLpEvent =
(struct HvLpEvent *)hvlpevent_queue.xSlicCurEventPtr; (struct HvLpEvent *)hvlpevent_queue.xSlicCurEventPtr;
if ( nextLpEvent->xFlags.xValid ) { if (nextLpEvent->xFlags.xValid) {
/* rmb() needed only for weakly consistent machines (regatta) */ /* rmb() needed only for weakly consistent machines (regatta) */
rmb(); rmb();
/* Set pointer to next potential event */ /* Set pointer to next potential event */
hvlpevent_queue.xSlicCurEventPtr += ((nextLpEvent->xSizeMinus1 + hvlpevent_queue.xSlicCurEventPtr += ((nextLpEvent->xSizeMinus1 +
LpEventAlign ) / LpEventAlign) /
LpEventAlign ) * LpEventAlign) *
LpEventAlign; LpEventAlign;
/* Wrap to beginning if no room at end */ /* Wrap to beginning if no room at end */
if (hvlpevent_queue.xSlicCurEventPtr > hvlpevent_queue.xSlicLastValidEventPtr) if (hvlpevent_queue.xSlicCurEventPtr > hvlpevent_queue.xSlicLastValidEventPtr)
...@@ -107,15 +107,15 @@ int hvlpevent_is_pending(void) ...@@ -107,15 +107,15 @@ int hvlpevent_is_pending(void)
return next_event->xFlags.xValid | hvlpevent_queue.xPlicOverflowIntPending; return next_event->xFlags.xValid | hvlpevent_queue.xPlicOverflowIntPending;
} }
static void hvlpevent_clear_valid( struct HvLpEvent * event ) static void hvlpevent_clear_valid(struct HvLpEvent * event)
{ {
/* Clear the valid bit of the event /* Clear the valid bit of the event
* Also clear bits within this event that might * Also clear bits within this event that might
* look like valid bits (on 64-byte boundaries) * look like valid bits (on 64-byte boundaries)
*/ */
unsigned extra = (( event->xSizeMinus1 + LpEventAlign ) / unsigned extra = ((event->xSizeMinus1 + LpEventAlign) /
LpEventAlign ) - 1; LpEventAlign) - 1;
switch ( extra ) { switch (extra) {
case 3: case 3:
((struct HvLpEvent*)((char*)event+3*LpEventAlign))->xFlags.xValid=0; ((struct HvLpEvent*)((char*)event+3*LpEventAlign))->xFlags.xValid=0;
case 2: case 2:
...@@ -144,7 +144,7 @@ void process_hvlpevents(struct pt_regs *regs) ...@@ -144,7 +144,7 @@ void process_hvlpevents(struct pt_regs *regs)
for (;;) { for (;;) {
nextLpEvent = get_next_hvlpevent(); nextLpEvent = get_next_hvlpevent();
if ( nextLpEvent ) { if (nextLpEvent) {
/* Call appropriate handler here, passing /* Call appropriate handler here, passing
* a pointer to the LpEvent. The handler * a pointer to the LpEvent. The handler
* must make a copy of the LpEvent if it * must make a copy of the LpEvent if it
...@@ -158,21 +158,21 @@ void process_hvlpevents(struct pt_regs *regs) ...@@ -158,21 +158,21 @@ void process_hvlpevents(struct pt_regs *regs)
* registered for, so no type check is necessary * registered for, so no type check is necessary
* here! * here!
*/ */
if ( nextLpEvent->xType < HvLpEvent_Type_NumTypes ) if (nextLpEvent->xType < HvLpEvent_Type_NumTypes)
__get_cpu_var(hvlpevent_counts)[nextLpEvent->xType]++; __get_cpu_var(hvlpevent_counts)[nextLpEvent->xType]++;
if ( nextLpEvent->xType < HvLpEvent_Type_NumTypes && if (nextLpEvent->xType < HvLpEvent_Type_NumTypes &&
lpEventHandler[nextLpEvent->xType] ) lpEventHandler[nextLpEvent->xType])
lpEventHandler[nextLpEvent->xType](nextLpEvent, regs); lpEventHandler[nextLpEvent->xType](nextLpEvent, regs);
else else
printk(KERN_INFO "Unexpected Lp Event type=%d\n", nextLpEvent->xType ); printk(KERN_INFO "Unexpected Lp Event type=%d\n", nextLpEvent->xType );
hvlpevent_clear_valid( nextLpEvent ); hvlpevent_clear_valid(nextLpEvent);
} else if ( hvlpevent_queue.xPlicOverflowIntPending ) } else if (hvlpevent_queue.xPlicOverflowIntPending)
/* /*
* No more valid events. If overflow events are * No more valid events. If overflow events are
* pending process them * pending process them
*/ */
HvCallEvent_getOverflowLpEvents( hvlpevent_queue.xIndex); HvCallEvent_getOverflowLpEvents(hvlpevent_queue.xIndex);
else else
break; break;
} }
......
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