diff options
author | Michal Marek <mmarek@suse.cz> | 2011-04-01 12:41:20 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-05-26 10:54:37 +0200 |
commit | 8d2c50e3b65c8d48d51088f541c13fde46cc8133 (patch) | |
tree | b0e073fdadba2c407b2e44579aaf5d2ae25cc526 /fs/gfs2 | |
parent | 3df3f2bf6104dca5cf225063436b7d6fff6793b1 (diff) |
gfs2: Drop __TIME__ usage
The kernel already prints its build timestamp during boot, no need to
repeat it in random drivers and produce different object files each
time.
Cc: Steven Whitehouse <swhiteho@redhat.com>
Cc: cluster-devel@redhat.com
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/main.c b/fs/gfs2/main.c index 888a5f5a1a5..5ebdbee70e8 100644 --- a/fs/gfs2/main.c +++ b/fs/gfs2/main.c @@ -145,7 +145,7 @@ static int __init init_gfs2_fs(void) gfs2_register_debugfs(); - printk("GFS2 (built %s %s) installed\n", __DATE__, __TIME__); + printk("GFS2 installed\n"); return 0; |