aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-ppc64
diff options
context:
space:
mode:
authorMichael Ellerman <michael@ellerman.id.au>2005-06-30 01:07:57 -0400
committerPaul Mackerras <paulus@samba.org>2005-06-30 01:07:57 -0400
commit1b19bc721416ae5bc813521d9e010a89f4816120 (patch)
tree7034c878cdc370cb16b83957b652f6c2b95630d5 /include/asm-ppc64
parentee48444b85f498d99592835f61125385d8e9c975 (diff)
[PATCH] ppc64: Don't pass the pointers to xItLpQueue around
Because there's only one ItLpQueue and we know where it is, ie. xItLpQueue, there's no point passing pointers to it it around all over the place. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Acked-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-ppc64')
-rw-r--r--include/asm-ppc64/iSeries/ItLpQueue.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-ppc64/iSeries/ItLpQueue.h b/include/asm-ppc64/iSeries/ItLpQueue.h
index 393299e04d7f..832497e3259b 100644
--- a/include/asm-ppc64/iSeries/ItLpQueue.h
+++ b/include/asm-ppc64/iSeries/ItLpQueue.h
@@ -76,9 +76,9 @@ struct ItLpQueue {
76 76
77extern struct ItLpQueue xItLpQueue; 77extern struct ItLpQueue xItLpQueue;
78 78
79extern struct HvLpEvent *ItLpQueue_getNextLpEvent(struct ItLpQueue *); 79extern struct HvLpEvent *ItLpQueue_getNextLpEvent(void);
80extern int ItLpQueue_isLpIntPending(struct ItLpQueue *); 80extern int ItLpQueue_isLpIntPending(void);
81extern unsigned ItLpQueue_process(struct ItLpQueue *, struct pt_regs *); 81extern unsigned ItLpQueue_process(struct pt_regs *);
82extern void ItLpQueue_clearValid(struct HvLpEvent *); 82extern void ItLpQueue_clearValid(struct HvLpEvent *);
83 83
84#endif /* _ITLPQUEUE_H */ 84#endif /* _ITLPQUEUE_H */