diff options
author | Michal Marek <mmarek@suse.cz> | 2011-04-01 06:41:20 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-05-26 03:46:17 -0400 |
commit | 75ce481e15911b4557da1250556eab5ffbd14d0d (patch) | |
tree | ac72c7243bad4e1d8edb0377dca50d97b817703b /fs/dlm | |
parent | 772e289862e111ce6b4d387e65cd5b7a8b618705 (diff) |
dlm: 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: Christine Caulfield <ccaulfie@redhat.com>
Cc: David Teigland <teigland@redhat.com>
Cc: cluster-devel@redhat.com
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/main.c b/fs/dlm/main.c index b80e0aa3cfa5..5a59efa0bb46 100644 --- a/fs/dlm/main.c +++ b/fs/dlm/main.c | |||
@@ -50,7 +50,7 @@ static int __init init_dlm(void) | |||
50 | if (error) | 50 | if (error) |
51 | goto out_netlink; | 51 | goto out_netlink; |
52 | 52 | ||
53 | printk("DLM (built %s %s) installed\n", __DATE__, __TIME__); | 53 | printk("DLM installed\n"); |
54 | 54 | ||
55 | return 0; | 55 | return 0; |
56 | 56 | ||