dect
/
linux-2.6
Archived
13
0
Fork 0

sh: intc: Use IRQ_SET_MASK_OK_NOCOPY for intc_set_affinity.

intc_set_affinity() updates the cpumask in place, so there's no need for
the upper layer to do this itself.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
Paul Mundt 2012-01-24 16:55:57 +09:00
parent 29775df10f
commit 3037764213
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ static int intc_set_affinity(struct irq_data *data,
cpumask_copy(data->affinity, cpumask);
return 0;
return IRQ_SET_MASK_OK_NOCOPY;
}
#endif