aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/sh/intc
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2012-01-24 00:07:18 -0500
committerPaul Mundt <lethal@linux-sh.org>2012-01-24 00:07:18 -0500
commit5fbebcbdb3730666c0d1d22021a90d8483fc8e02 (patch)
tree9cc6b161c20dcc3790a9a0dc67d9139531fc034b /drivers/sh/intc
parent2485a4b610171f4e1c4ab0d053569747795c1bbe (diff)
sh: intc: Make global intc controller counter static.
No need to expose this globally since it's only used for core accounting. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/sh/intc')
-rw-r--r--drivers/sh/intc/core.c2
-rw-r--r--drivers/sh/intc/internals.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/drivers/sh/intc/core.c b/drivers/sh/intc/core.c
index e53e449b4ec..c64690dda4a 100644
--- a/drivers/sh/intc/core.c
+++ b/drivers/sh/intc/core.c
@@ -35,7 +35,7 @@
35 35
36LIST_HEAD(intc_list); 36LIST_HEAD(intc_list);
37DEFINE_RAW_SPINLOCK(intc_big_lock); 37DEFINE_RAW_SPINLOCK(intc_big_lock);
38unsigned int nr_intc_controllers; 38static unsigned int nr_intc_controllers;
39 39
40/* 40/*
41 * Default priority level 41 * Default priority level
diff --git a/drivers/sh/intc/internals.h b/drivers/sh/intc/internals.h
index b0e9155ff73..422b72df089 100644
--- a/drivers/sh/intc/internals.h
+++ b/drivers/sh/intc/internals.h
@@ -157,7 +157,6 @@ void _intc_enable(struct irq_data *data, unsigned long handle);
157/* core.c */ 157/* core.c */
158extern struct list_head intc_list; 158extern struct list_head intc_list;
159extern raw_spinlock_t intc_big_lock; 159extern raw_spinlock_t intc_big_lock;
160extern unsigned int nr_intc_controllers;
161extern struct bus_type intc_subsys; 160extern struct bus_type intc_subsys;
162 161
163unsigned int intc_get_dfl_prio_level(void); 162unsigned int intc_get_dfl_prio_level(void);