Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30377642 authored by Paul Mundt's avatar Paul Mundt
Browse files

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: default avatarPaul Mundt <lethal@linux-sh.org>
parent 29775df1
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -73,7 +73,7 @@ static int intc_set_affinity(struct irq_data *data,


	cpumask_copy(data->affinity, cpumask);
	cpumask_copy(data->affinity, cpumask);


	return 0;
	return IRQ_SET_MASK_OK_NOCOPY;
}
}
#endif
#endif