diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-09-07 08:46:49 +0200 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2013-11-06 15:31:01 -0500 |
commit | 9d71cee66725a0a1333f02f315c06cc42f07650e (patch) | |
tree | 12bb889fbb5327d51ef4c857f32ad50f41fcb3f4 /arch/x86/xen/time.c | |
parent | ce5be5a16359962f78f0203f0ed7ad6d489492ab (diff) | |
download | op-kernel-dev-9d71cee66725a0a1333f02f315c06cc42f07650e.zip op-kernel-dev-9d71cee66725a0a1333f02f315c06cc42f07650e.tar.gz |
x86/xen: remove deprecated IRQF_DISABLED
This patch proposes to remove the IRQF_DISABLED flag from x86/xen
code. It's a NOOP since 2.6.35 and it will be removed one day.
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'arch/x86/xen/time.c')
-rw-r--r-- | arch/x86/xen/time.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/xen/time.c b/arch/x86/xen/time.c index ee36589..12a1ca7 100644 --- a/arch/x86/xen/time.c +++ b/arch/x86/xen/time.c @@ -443,8 +443,7 @@ void xen_setup_timer(int cpu) name = "<timer kasprintf failed>"; irq = bind_virq_to_irqhandler(VIRQ_TIMER, cpu, xen_timer_interrupt, - IRQF_DISABLED|IRQF_PERCPU| - IRQF_NOBALANCING|IRQF_TIMER| + IRQF_PERCPU|IRQF_NOBALANCING|IRQF_TIMER| IRQF_FORCE_RESUME, name, NULL); |