[PATCH] Fixup KERN_INFO in tmscsim.c

From: Nick Warne
Date: Fri Aug 15 2008 - 07:11:01 EST


Hi all,

Setting up my new AMD64 I noticed a curious one liner in syslogs:

^Iwith "disable_clustering=1" and report to maintainers

The attached patch fixes this up so he goes back to his wife
in /var/log/messages (or wherever KERN_INFO logs on the system):


DC390: clustering now enabled by default. If you get problems load
with "disable_clustering=1" and report to maintainers


The patch was created on stable 2.6.26.2 git tree.

Nick

Signed off by: "Nick Warne" <nick@xxxxxxxxx>
--
Free Software Foundation Associate Member 5508--- drivers/scsi/tmscsim.cORIG 2008-08-15 10:30:47.000000000 +0100
+++ drivers/scsi/tmscsim.c 2008-08-15 11:45:01.000000000 +0100
@@ -2573,8 +2573,8 @@
static int __init dc390_module_init(void)
{
if (!disable_clustering)
- printk(KERN_INFO "DC390: clustering now enabled by default. If you get problems load\n"
- "\twith \"disable_clustering=1\" and report to maintainers\n");
+ printk(KERN_INFO "DC390: clustering now enabled by default. If you get problems load\n");
+ printk(KERN_INFO "with \"disable_clustering=1\" and report to maintainers\n");

if (tmscsim[0] == -1 || tmscsim[0] > 15) {
tmscsim[0] = 7;