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:47 -0400 |
commit | 36a9f77e50032e367b43d72866c18f4a61cf89da (patch) | |
tree | bbd8243b9a80b2c557dd41630cac62fcebdee4a2 /net/atm/lec.c | |
parent | 75ce481e15911b4557da1250556eab5ffbd14d0d (diff) |
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) | |||
1173 | #endif | 1173 | #endif |
1174 | 1174 | ||
1175 | register_atm_ioctl(&lane_ioctl_ops); | 1175 | register_atm_ioctl(&lane_ioctl_ops); |
1176 | pr_info("lec.c: " __DATE__ " " __TIME__ " initialized\n"); | 1176 | pr_info("lec.c: initialized\n"); |
1177 | return 0; | 1177 | return 0; |
1178 | } | 1178 | } |
1179 | 1179 | ||