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>
This commit is contained in:
Michal Marek 2011-04-01 12:41:20 +02:00
parent 772e289862
commit 75ce481e15
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ static int __init init_dlm(void)
if (error)
goto out_netlink;
printk("DLM (built %s %s) installed\n", __DATE__, __TIME__);
printk("DLM installed\n");
return 0;