Message ID | 20240902141202.308632-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 57bada8a5e69e6cb0668436b206db1fbdbf7ebfd |
Headers | show |
Series | [next] scsi: zalon: Remove trailing space after \n newline | expand |
Colin, > There is a extraneous space after a newline in a dev_printk message, > remove it. Also fix non-tabbed indentation of the statement. Applied to 6.12/scsi-staging, thanks!
On Mon, 02 Sep 2024 15:12:02 +0100, Colin Ian King wrote: > There is a extraneous space after a newline in a dev_printk message, > remove it. Also fix non-tabbed indentation of the statement. > > Applied to 6.12/scsi-queue, thanks! [1/1] scsi: zalon: Remove trailing space after \n newline https://git.kernel.org/mkp/scsi/c/57bada8a5e69
diff --git a/drivers/scsi/zalon.c b/drivers/scsi/zalon.c index 22d412cab91d..15602ec862e3 100644 --- a/drivers/scsi/zalon.c +++ b/drivers/scsi/zalon.c @@ -139,7 +139,7 @@ zalon_probe(struct parisc_device *dev) return -ENODEV; if (request_irq(dev->irq, ncr53c8xx_intr, IRQF_SHARED, "zalon", host)) { - dev_printk(KERN_ERR, &dev->dev, "irq problem with %d, detaching\n ", + dev_printk(KERN_ERR, &dev->dev, "irq problem with %d, detaching\n", dev->irq); goto fail; }
There is a extraneous space after a newline in a dev_printk message, remove it. Also fix non-tabbed indentation of the statement. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- drivers/scsi/zalon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)