Commit a3fabdcf authored by Serge Hallyn's avatar Serge Hallyn Committed by Linus Torvalds

[PATCH] ftape syntax error

2.6.11-rc2-bk5 introduces two syntax errors under drivers/char/ftape.  The
following patch replaces ");" at the end of two printks which were
accidentally removed.
Signed-off-by: default avatarSerge Hallyn <serue@us.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 57b5328d
...@@ -1172,7 +1172,7 @@ int zft_compressor_init(void) ...@@ -1172,7 +1172,7 @@ int zft_compressor_init(void)
if (TRACE_LEVEL >= ft_t_info) { if (TRACE_LEVEL >= ft_t_info) {
printk( printk(
KERN_INFO "(c) 1997 Claus-Justus Heine (claus@momo.math.rwth-aachen.de)\n" KERN_INFO "(c) 1997 Claus-Justus Heine (claus@momo.math.rwth-aachen.de)\n"
KERN_INFO "Compressor for zftape (lzrw3 algorithm)\n" KERN_INFO "Compressor for zftape (lzrw3 algorithm)\n");
} }
#else /* !MODULE */ #else /* !MODULE */
/* print a short no-nonsense boot message */ /* print a short no-nonsense boot message */
......
...@@ -72,7 +72,7 @@ static int __init ftape_init(void) ...@@ -72,7 +72,7 @@ static int __init ftape_init(void)
KERN_INFO "(c) 1993-1996 Bas Laarhoven (bas@vimec.nl)\n" KERN_INFO "(c) 1993-1996 Bas Laarhoven (bas@vimec.nl)\n"
KERN_INFO "(c) 1995-1996 Kai Harrekilde-Petersen (khp@dolphinics.no)\n" KERN_INFO "(c) 1995-1996 Kai Harrekilde-Petersen (khp@dolphinics.no)\n"
KERN_INFO "(c) 1996-1997 Claus-Justus Heine (claus@momo.math.rwth-aachen.de)\n" KERN_INFO "(c) 1996-1997 Claus-Justus Heine (claus@momo.math.rwth-aachen.de)\n"
KERN_INFO "QIC-117 driver for QIC-40/80/3010/3020 floppy tape drives\n" KERN_INFO "QIC-117 driver for QIC-40/80/3010/3020 floppy tape drives\n");
} }
#else /* !MODULE */ #else /* !MODULE */
/* print a short no-nonsense boot message */ /* print a short no-nonsense boot message */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment