diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-07-20 23:33:49 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-09-22 10:15:42 +0200 |
commit | 676cb02dc32adef13d9efb5ea52079e4ede1e3ec (patch) | |
tree | 17e394a2ee1353779922fde0470fdacdd66b446c /kernel | |
parent | b30a3f6257ed2105259b404d419b4964e363928c (diff) | |
download | blackbird-op-linux-676cb02dc32adef13d9efb5ea52079e4ede1e3ec.tar.gz blackbird-op-linux-676cb02dc32adef13d9efb5ea52079e4ede1e3ec.zip |
softirqs: Make wakeup_softirqd static
No users outside of kernel/softirq.c
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/softirq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c index 07b4f1b1a73a..80f6e3bd1d2a 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -67,7 +67,7 @@ char *softirq_to_name[NR_SOFTIRQS] = { * to the pending events, so lets the scheduler to balance * the softirq load for us. */ -void wakeup_softirqd(void) +static void wakeup_softirqd(void) { /* Interrupts are disabled: no need to stop preemption */ struct task_struct *tsk = __get_cpu_var(ksoftirqd); |