diff options
author | Metathronius Galabant <m.galabant@googlemail.com> | 2006-09-30 23:27:47 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 00:39:22 -0700 |
commit | cc088d10d02978641c7a2eecd18caf1e01e597b3 (patch) | |
tree | 31c6e47cb6383d86f0c3cd8b5fca283d9b27e639 /drivers | |
parent | a077c1a075473910928676ed95acb393259d9310 (diff) | |
download | linux-3.10-cc088d10d02978641c7a2eecd18caf1e01e597b3.tar.gz linux-3.10-cc088d10d02978641c7a2eecd18caf1e01e597b3.tar.bz2 linux-3.10-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 'drivers')
-rw-r--r-- | drivers/block/cciss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index e707f39e990..d2d45eaf368 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); } |