Skip to content

Commit

Permalink
atm: Drop __TIME__ usage
Browse files Browse the repository at this point in the history
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 <[email protected]>
Cc: [email protected]
Signed-off-by: Michal Marek <[email protected]>
  • Loading branch information
michal42 committed May 26, 2011
1 parent 75ce481 commit 36a9f77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/atm/lec.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion net/atm/mpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 36a9f77

Please sign in to comment.