diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-02-08 04:20:47 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 09:22:36 -0800 |
commit | a9ca663578321695658675103c35452d8ce91d85 (patch) | |
tree | 036b9812bfa6066f832a345e0118644df92f31e9 /fs/udf | |
parent | 28f7c4d413b9e6326f8d0aef31cd5ba8500b20dd (diff) | |
download | linux-a9ca663578321695658675103c35452d8ce91d85.tar.gz linux-a9ca663578321695658675103c35452d8ce91d85.tar.bz2 linux-a9ca663578321695658675103c35452d8ce91d85.zip |
kill UDFFS_{DATE,VERSION}
Printing date and version of a driver makes sense if there's a maintainer
who's maintaining and using these, but printing ancient version information
only confuses users.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/super.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c index 2048351c56c0..3afe7647f94a 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -1792,9 +1792,8 @@ static int udf_fill_super(struct super_block *sb, void *options, int silent) if (!silent) { kernel_timestamp ts; udf_time_to_stamp(&ts, sbi->s_record_time); - udf_info("UDF %s (%s) Mounting volume '%s', " + udf_info("UDF: Mounting volume '%s', " "timestamp %04u/%02u/%02u %02u:%02u (%x)\n", - UDFFS_VERSION, UDFFS_DATE, sbi->s_volume_ident, ts.year, ts.month, ts.day, ts.hour, ts.minute, ts.typeAndTimezone); } |