projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3df3f2b
)
gfs2: Drop __TIME__ usage
author
Michal Marek
<mmarek@suse.cz>
Fri, 1 Apr 2011 10:41:20 +0000
(12:41 +0200)
committer
Michal Marek
<mmarek@suse.cz>
Thu, 26 May 2011 08:54:37 +0000
(10:54 +0200)
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>
fs/gfs2/main.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/gfs2/main.c
b/fs/gfs2/main.c
index 888a5f5a1a583104b3b093f3257c84f152b3ce0e..5ebdbee70e80512659dc90fe7e2ead7ebb3f5bc8 100644
(file)
--- 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;