Skip to content

Commit

Permalink
[SCSI] tmscsim: fix indentation and braces disagreement - add braces
Browse files Browse the repository at this point in the history
Lucky winner is 557cc47 ([SCSI] tmscsim: Fixup
KERN_INFO in printk).

Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
  • Loading branch information
Ilpo Järvinen authored and James Bottomley committed Dec 29, 2008
1 parent 8d6dda7 commit 66aa574
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/scsi/tmscsim.c
Original file line number Diff line number Diff line change
Expand Up @@ -2572,9 +2572,10 @@ static struct pci_driver dc390_driver = {

static int __init dc390_module_init(void)
{
if (!disable_clustering)
if (!disable_clustering) {
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 66aa574

Please sign in to comment.