]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
atm: Drop __TIME__ usage
authorMichal Marek <mmarek@suse.cz>
Fri, 1 Apr 2011 10:41:20 +0000 (12:41 +0200)
committerMichal Marek <mmarek@suse.cz>
Thu, 26 May 2011 07:46:47 +0000 (09:46 +0200)
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>
net/atm/lec.c
net/atm/mpc.c

index 38754fdb88babc634717cc2b0cd6eba297e119bd..cb14ddf8f0c0c1b89489207c97253d6407bf2053 100644 (file)
@@ -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;
 }
 
index 644cdf07164211b007d10e40918486497efe93c5..3ccca42e6f90ad476706770b78cce263c736f02e 100644 (file)
@@ -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;
 }