projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
36a09d7
)
MIPS: IP32: Fix needlessly global symbols in arch/mips/sgi-ip32/ip32-irq.c
author
Dmitri Vorobiev
<dmitri.vorobiev@movial.com>
Mon, 30 Mar 2009 19:53:25 +0000
(22:53 +0300)
committer
Ralf Baechle
<ralf@linux-mips.org>
Thu, 14 May 2009 12:50:25 +0000
(13:50 +0100)
The following symbols are needlessly defined global: cpuerr_irq and
memerr_irq. This patch makes the symbols static.
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/sgi-ip32/ip32-irq.c
patch
|
blob
|
history
diff --git
a/arch/mips/sgi-ip32/ip32-irq.c
b/arch/mips/sgi-ip32/ip32-irq.c
index 83a0b3c359daecee88c87223beef876d9b35aab9..5c2bf111ca67ecf7a36230bccd2b19701f36f367 100644
(file)
--- a/
arch/mips/sgi-ip32/ip32-irq.c
+++ b/
arch/mips/sgi-ip32/ip32-irq.c
@@
-112,13
+112,13
@@
static void inline flush_mace_bus(void)
extern irqreturn_t crime_memerr_intr(int irq, void *dev_id);
extern irqreturn_t crime_cpuerr_intr(int irq, void *dev_id);
-struct irqaction memerr_irq = {
+st
atic st
ruct irqaction memerr_irq = {
.handler = crime_memerr_intr,
.flags = IRQF_DISABLED,
.name = "CRIME memory error",
};
-struct irqaction cpuerr_irq = {
+st
atic st
ruct irqaction cpuerr_irq = {
.handler = crime_cpuerr_intr,
.flags = IRQF_DISABLED,
.name = "CRIME CPU error",