[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <173002278026.1442.15301826353081104665.tip-bot2@tip-bot2>
Date: Sun, 27 Oct 2024 09:53:00 -0000
From: "tip-bot2 for Thorsten Blum" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Thorsten Blum <thorsten.blum@...ux.dev>,
Thomas Gleixner <tglx@...utronix.de>, x86@...nel.org,
linux-kernel@...r.kernel.org, maz@...nel.org
Subject: [tip: irq/core] genirq/irqdesc: Use str_enabled_disabled() helper in
wakeup_show()
The following commit has been merged into the irq/core branch of tip:
Commit-ID: d1a128bc3057a090b97ab5a9f938874df3d3f124
Gitweb: https://git.kernel.org/tip/d1a128bc3057a090b97ab5a9f938874df3d3f124
Author: Thorsten Blum <thorsten.blum@...ux.dev>
AuthorDate: Sat, 26 Oct 2024 17:40:29 +02:00
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitterDate: Sun, 27 Oct 2024 10:42:09 +01:00
genirq/irqdesc: Use str_enabled_disabled() helper in wakeup_show()
Remove hard-coded strings by using the str_enabled_disabled() helper
function.
Signed-off-by: Thorsten Blum <thorsten.blum@...ux.dev>
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
Link: https://lore.kernel.org/all/20241026154029.158977-2-thorsten.blum@linux.dev
---
kernel/irq/irqdesc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/irq/irqdesc.c b/kernel/irq/irqdesc.c
index 479cf1c..0253e77 100644
--- a/kernel/irq/irqdesc.c
+++ b/kernel/irq/irqdesc.c
@@ -15,6 +15,7 @@
#include <linux/maple_tree.h>
#include <linux/irqdomain.h>
#include <linux/sysfs.h>
+#include <linux/string_choices.h>
#include "internals.h"
@@ -320,8 +321,7 @@ static ssize_t wakeup_show(struct kobject *kobj,
ssize_t ret = 0;
raw_spin_lock_irq(&desc->lock);
- ret = sprintf(buf, "%s\n",
- irqd_is_wakeup_set(&desc->irq_data) ? "enabled" : "disabled");
+ ret = sprintf(buf, "%s\n", str_enabled_disabled(irqd_is_wakeup_set(&desc->irq_data)));
raw_spin_unlock_irq(&desc->lock);
return ret;
Powered by blists - more mailing lists