From: Andrew Lunn <andrew@lunn.ch> Date: 2024-07-01 22:12:14
On Mon, Jul 01, 2024 at 07:02:32PM +0200, Marek Behún wrote:
Simplify the code in the is_percpu_irq() function. Instead of
if (condition)
return true;
return false;
simply return condition.
Signed-off-by: Marek Behún <kabel@kernel.org>