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 | |
parent | 75ce481e15911b4557da1250556eab5ffbd14d0d (diff) | |
download | linux-3.10-36a9f77e50032e367b43d72866c18f4a61cf89da.tar.gz linux-3.10-36a9f77e50032e367b43d72866c18f4a61cf89da.tar.bz2 linux-3.10-36a9f77e50032e367b43d72866c18f4a61cf89da.zip |
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')
-rw-r--r-- | net/atm/lec.c | 2 | ||||
-rw-r--r-- | net/atm/mpc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/atm/lec.c b/net/atm/lec.c index 38754fdb88b..cb14ddf8f0c 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; } diff --git a/net/atm/mpc.c b/net/atm/mpc.c index 644cdf07164..3ccca42e6f9 100644 --- a/net/atm/mpc.c +++ b/net/atm/mpc.c @@ -1482,7 +1482,7 @@ static __init int atm_mpoa_init(void) if (mpc_proc_init() != 0) pr_info("failed to initialize /proc/mpoa\n"); - pr_info("mpc.c: " __DATE__ " " __TIME__ " initialized\n"); + pr_info("mpc.c: initialized\n"); return 0; } |