Remove hard-coded strings by using the str_enabled_disabled() helper function. Signed-off-by: Thorsten Blum <thorsten.blum@xxxxxxxxx> --- drivers/scsi/hpsa.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index 84d8de07b7ae..ff49e93df4ed 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c @@ -36,6 +36,7 @@ #include <linux/dma-mapping.h> #include <linux/completion.h> #include <linux/moduleparam.h> +#include <linux/string_choices.h> #include <scsi/scsi.h> #include <scsi/scsi_cmnd.h> #include <scsi/scsi_device.h> @@ -469,7 +470,7 @@ static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev, h->acciopath_status = !!status; dev_warn(&h->pdev->dev, "hpsa: HP SSD Smart Path %s via sysfs update.\n", - h->acciopath_status ? "enabled" : "disabled"); + str_enabled_disabled(h->acciopath_status)); return count; } @@ -560,7 +561,7 @@ static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev, h = shost_to_hba(shost); return snprintf(buf, 30, "HP SSD Smart Path %s\n", - (h->acciopath_status == 1) ? "enabled" : "disabled"); + str_enabled_disabled(h->acciopath_status == 1)); } /* List of controllers which cannot be hard reset on kexec with reset_devices */ -- 2.48.1