aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/cciss.c
diff options
context:
space:
mode:
authorMetathronius Galabant <m.galabant@googlemail.com>2006-09-30 23:27:47 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2006-10-01 00:39:22 -0700
commitcc088d10d02978641c7a2eecd18caf1e01e597b3 (patch)
tree31c6e47cb6383d86f0c3cd8b5fca283d9b27e639 /drivers/block/cciss.c
parent[PATCH] synclink_gt: increase max devices (diff)
downloadlinux-dev-cc088d10d02978641c7a2eecd18caf1e01e597b3.tar.xz
linux-dev-cc088d10d02978641c7a2eecd18caf1e01e597b3.zip
[PATCH] cciss: remove unneeded spaces in output for attached volumes
It removes the awkwards spaces after the "=" when displaying the geometry of the attached volumes. Before: cciss: using DAC cycles blocks= 286734240 block_size= 512 heads= 255, sectors= 32, cylinders= 35139 After: cciss: using DAC cycles blocks=286734240 block_size=512 heads=255, sectors=32, cylinders=35139 Signed-off-by: Metathronius Galabant <m.galabant@gmail.com> Acked-by: Mike Miller <mike.miller@hp.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '')
-rw-r--r--drivers/block/cciss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
index e707f39e990c..d2d45eaf3681 100644
--- a/drivers/block/cciss.c
+++ b/drivers/block/cciss.c
@@ -1964,7 +1964,7 @@ static void cciss_geometry_inquiry(int ctlr, int logvol,
} else { /* Get geometry failed */
printk(KERN_WARNING "cciss: reading geometry failed\n");
}
- printk(KERN_INFO " heads= %d, sectors= %d, cylinders= %d\n\n",
+ printk(KERN_INFO " heads=%d, sectors=%d, cylinders=%d\n\n",
drv->heads, drv->sectors, drv->cylinders);
}