Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 36a9f77e authored by Michal Marek's avatar Michal Marek
Browse files

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: default avatarDavid S. Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 75ce481e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}

+1 −1
Original line number Diff line number Diff line
@@ -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;
}