* [PATCH] drivers/scsi/ch.c: print real device name
@ 2011-02-09 17:18 Harald Hoyer
0 siblings, 0 replies; only message in thread
From: Harald Hoyer @ 2011-02-09 17:18 UTC (permalink / raw)
To: linux-kernel; +Cc: Harald Hoyer
Print the real name "sch[0-9]*" instead of "ch[0-9]".
Signed-off-by: Harald Hoyer <harald@redhat.com>
---
drivers/scsi/ch.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/scsi/ch.c b/drivers/scsi/ch.c
index a15474e..21ce545 100644
--- a/drivers/scsi/ch.c
+++ b/drivers/scsi/ch.c
@@ -87,12 +87,12 @@ static const char * vendor_labels[CH_TYPES-4] = {
#define DPRINTK(fmt, arg...) \
do { \
if (debug) \
- printk(KERN_DEBUG "%s: " fmt, ch->name, ##arg); \
+ printk(KERN_DEBUG "s%s: " fmt, ch->name, ##arg); \
} while (0)
#define VPRINTK(level, fmt, arg...) \
do { \
if (verbose) \
- printk(level "%s: " fmt, ch->name, ##arg); \
+ printk(level "s%s: " fmt, ch->name, ##arg); \
} while (0)
/* ------------------------------------------------------------------- */
@@ -940,7 +940,7 @@ static int ch_probe(struct device *dev)
ch_init_elem(ch);
dev_set_drvdata(dev, ch);
- sdev_printk(KERN_INFO, sd, "Attached scsi changer %s\n", ch->name);
+ sdev_printk(KERN_INFO, sd, "Attached scsi changer s%s\n", ch->name);
return 0;
remove_idr:
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-02-09 17:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-09 17:18 [PATCH] drivers/scsi/ch.c: print real device name Harald Hoyer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®