Skip to content

Commit

Permalink
[SCSI] tmscsim: Fixup KERN_INFO in printk
Browse files Browse the repository at this point in the history
Multiline kernel messages should contain a priority in every line,
besides, some log daemons represent a tabulator as "^I", fix both these
issues.

Signed-off-by: Nick Warne <nick@ukfsn.org>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
  • Loading branch information
Nick Warne authored and James Bottomley committed Oct 3, 2008
1 parent 3fd7f93 commit 557cc47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/scsi/tmscsim.c
Original file line number Diff line number Diff line change
Expand Up @@ -2573,8 +2573,8 @@ static struct pci_driver dc390_driver = {
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;
Expand Down

0 comments on commit 557cc47

Please sign in to comment.