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:
7f15a25
)
microblaze: Remove deprecated IRQF_DISABLED
author
Michal Simek
<michal.simek@xilinx.com>
Tue, 20 Aug 2013 14:45:36 +0000
(16:45 +0200)
committer
Michal Simek
<michal.simek@xilinx.com>
Fri, 8 Nov 2013 14:18:30 +0000
(15:18 +0100)
Removed IRQF_DISABLED as it's no-op and should be removed.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
arch/microblaze/kernel/timer.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/microblaze/kernel/timer.c
b/arch/microblaze/kernel/timer.c
index e4b3f33ef34cd348366e515aa02ea9efbd3d4a16..d7abb71abf61178d13bd1cd6027c967e7b609f70 100644
(file)
--- a/
arch/microblaze/kernel/timer.c
+++ b/
arch/microblaze/kernel/timer.c
@@
-148,7
+148,7
@@
static irqreturn_t timer_interrupt(int irq, void *dev_id)
static struct irqaction timer_irqaction = {
.handler = timer_interrupt,
- .flags = IRQF_
DISABLED | IRQF_
TIMER,
+ .flags = IRQF_TIMER,
.name = "timer",
.dev_id = &clockevent_xilinx_timer,
};