diff options
author | Alexander Gordeev <agordeev@redhat.com> | 2013-05-13 00:57:49 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-05-14 16:00:18 +1000 |
commit | dcb615aef988b57deef3d9b4557ff20f681a82b0 (patch) | |
tree | 9e928e4082b9a71b120a425834d9d76dc8bd7e87 /arch/powerpc/sysdev/xics | |
parent | ca9d7aea5952c5e90bfe28ed738a7e962c0adad2 (diff) | |
download | blackbird-op-linux-dcb615aef988b57deef3d9b4557ff20f681a82b0.tar.gz blackbird-op-linux-dcb615aef988b57deef3d9b4557ff20f681a82b0.zip |
powerpc: Fix irq_set_affinity() return values
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/xics')
-rw-r--r-- | arch/powerpc/sysdev/xics/ics-opal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/xics/ics-opal.c b/arch/powerpc/sysdev/xics/ics-opal.c index f7e8609df0d5..39d72212655e 100644 --- a/arch/powerpc/sysdev/xics/ics-opal.c +++ b/arch/powerpc/sysdev/xics/ics-opal.c @@ -148,7 +148,7 @@ static int ics_opal_set_affinity(struct irq_data *d, __func__, d->irq, hw_irq, server, rc); return -1; } - return 0; + return IRQ_SET_MASK_OK; } static struct irq_chip ics_opal_irq_chip = { |