projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
474aa3d
)
genirq: Make function __irq_do_set_handler() static
author
Wei Yongjun
<weiyongjun1@huawei.com>
Sun, 25 Sep 2016 15:36:39 +0000
(15:36 +0000)
committer
Thomas Gleixner
<tglx@linutronix.de>
Sun, 25 Sep 2016 20:46:52 +0000
(16:46 -0400)
Fixes the following sparse warning:
kernel/irq/chip.c:786:1: warning:
symbol '__irq_do_set_handler' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Link:
http://lkml.kernel.org/r/1474817799-18676-1-git-send-email-weiyj.lk@gmail.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/irq/chip.c
patch
|
blob
|
blame
|
history
diff --git
a/kernel/irq/chip.c
b/kernel/irq/chip.c
index d8dfdc630b7ecf1f70f8337ee92878f7fcf8b2b2..be3c34e4f2ac1bbf679e92de5d82398a22aba7c9 100644
(file)
--- a/
kernel/irq/chip.c
+++ b/
kernel/irq/chip.c
@@
-782,7
+782,7
@@
void handle_percpu_devid_irq(struct irq_desc *desc)
chip->irq_eoi(&desc->irq_data);
}
-void
+
static
void
__irq_do_set_handler(struct irq_desc *desc, irq_flow_handler_t handle,
int is_chained, const char *name)
{