diff options
author | Michal Marek <mmarek@suse.cz> | 2011-04-01 12:41:20 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-05-26 09:46:47 +0200 |
commit | 36a9f77e50032e367b43d72866c18f4a61cf89da (patch) | |
tree | bbd8243b9a80b2c557dd41630cac62fcebdee4a2 /net/atm/lec.c | |
parent | 75ce481e15911b4557da1250556eab5ffbd14d0d (diff) | |
download | linux-36a9f77e50032e367b43d72866c18f4a61cf89da.tar.bz2 |
atm: 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.
Acked-by: David S. Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'net/atm/lec.c')
-rw-r--r-- | net/atm/lec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/lec.c b/net/atm/lec.c index 38754fdb88ba..cb14ddf8f0c0 100644 --- a/net/atm/lec.c +++ b/net/atm/lec.c @@ -1173,7 +1173,7 @@ static int __init lane_module_init(void) #endif register_atm_ioctl(&lane_ioctl_ops); - pr_info("lec.c: " __DATE__ " " __TIME__ " initialized\n"); + pr_info("lec.c: initialized\n"); return 0; } |