Commit 81bfbb2d authored by Yumeng Fang's avatar Yumeng Fang Committed by Greg Kroah-Hartman
Browse files

misc: enclosure: Use str_on_off() helper



Remove hard-coded strings by using the str_on_off() helper.

Signed-off-by: default avatarYumeng Fang <fang.yumeng@zte.com.cn>
Link: https://lore.kernel.org/r/20250623202944425TQzPdeMtYA8qRtlrnwiR8@zte.com.cn


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 587d1c3c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/slab.h>
#include <linux/string_choices.h>

static LIST_HEAD(container_list);
static DEFINE_MUTEX(container_list_lock);
@@ -592,7 +593,7 @@ static ssize_t get_component_power_status(struct device *cdev,
	if (ecomp->power_status == -1)
		return (edev->cb->get_power_status) ? -EIO : -ENOTTY;

	return sysfs_emit(buf, "%s\n", ecomp->power_status ? "on" : "off");
	return sysfs_emit(buf, "%s\n", str_on_off(ecomp->power_status));
}

static ssize_t set_component_power_status(struct device *cdev,