projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc5da22
)
drivers/misc/sgi-gru/grufile.c: fix the wrong members of gru_chip
author
Wanlong Gao
<
[email protected]
>
Thu, 14 Apr 2011 22:22:08 +0000
(15:22 -0700)
committer
Linus Torvalds
<
[email protected]
>
Thu, 14 Apr 2011 23:06:55 +0000
(16:06 -0700)
Fix the wrong members and the wrong function's definition, since the
irq_chip had changed.
Signed-off-by: Wanlong Gao <
[email protected]
>
Cc: Jack Steiner <
[email protected]
>
Cc: Thomas Gleixner <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/misc/sgi-gru/grufile.c
patch
|
blob
|
history
diff --git
a/drivers/misc/sgi-gru/grufile.c
b/drivers/misc/sgi-gru/grufile.c
index 20e4e9395b61ca1c6d85b09511b88f535a8ec120..ecafa4ba238b3ca4991a20dc5e6bb88458aee8de 100644
(file)
--- a/
drivers/misc/sgi-gru/grufile.c
+++ b/
drivers/misc/sgi-gru/grufile.c
@@
-348,15
+348,15
@@
static unsigned long gru_chiplet_cpu_to_mmr(int chiplet, int cpu, int *corep)
static int gru_irq_count[GRU_CHIPLETS_PER_BLADE];
-static void gru_noop(
unsigned int irq
)
+static void gru_noop(
struct irq_data *d
)
{
}
static struct irq_chip gru_chip[GRU_CHIPLETS_PER_BLADE] = {
[0 ... GRU_CHIPLETS_PER_BLADE - 1] {
- .
mask
= gru_noop,
- .
unmask
= gru_noop,
- .
ack
= gru_noop
+ .
irq_mask
= gru_noop,
+ .
irq_unmask
= gru_noop,
+ .
irq_ack
= gru_noop
}
};