[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250113152338.473477-2-thorsten.blum@linux.dev>
Date: Mon, 13 Jan 2025 16:23:38 +0100
From: Thorsten Blum <thorsten.blum@...ux.dev>
To: "James E.J. Bottomley" <James.Bottomley@...senPartnership.com>,
"Martin K. Petersen" <martin.petersen@...cle.com>
Cc: Thorsten Blum <thorsten.blum@...ux.dev>,
linux-scsi@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] scsi: aha1740: Use str_enabled_disabled() helper
Remove hard-coded strings by using the str_enabled_disabled() helper
function.
Use pr_info() instead of printk(KERN_INFO) to silence multiple
checkpatch warnings.
Signed-off-by: Thorsten Blum <thorsten.blum@...ux.dev>
---
drivers/scsi/aha1740.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/scsi/aha1740.c b/drivers/scsi/aha1740.c
index be7ebbbb9ba8..c21286eaa8a1 100644
--- a/drivers/scsi/aha1740.c
+++ b/drivers/scsi/aha1740.c
@@ -114,9 +114,9 @@ static int aha1740_show_info(struct seq_file *m, struct Scsi_Host *shpnt)
{
struct aha1740_hostdata *host = HOSTDATA(shpnt);
seq_printf(m, "aha174x at IO:%lx, IRQ %d, SLOT %d.\n"
- "Extended translation %sabled.\n",
+ "Extended translation %s.\n",
shpnt->io_port, shpnt->irq, host->edev->slot,
- host->translation ? "en" : "dis");
+ str_enabled_disabled(host->translation));
return 0;
}
@@ -578,10 +578,10 @@ static int aha1740_probe (struct device *dev)
outb(G2CNTRL_HRST, G2CNTRL(slotbase));
outb(0, G2CNTRL(slotbase));
}
- printk(KERN_INFO "Configuring slot %d at IO:%x, IRQ %u (%s)\n",
- edev->slot, slotbase, irq_level, irq_type ? "edge" : "level");
- printk(KERN_INFO "aha174x: Extended translation %sabled.\n",
- translation ? "en" : "dis");
+ pr_info("Configuring slot %d at IO:%x, IRQ %u (%s)\n",
+ edev->slot, slotbase, irq_level, irq_type ? "edge" : "level");
+ pr_info("aha174x: Extended translation %s.\n",
+ str_enabled_disabled(translation));
shpnt = scsi_host_alloc(&aha1740_template,
sizeof(struct aha1740_hostdata));
if(shpnt == NULL)
--
2.47.1
Powered by blists - more mailing lists