Skip to content

Commit

Permalink
hdlcdrv: 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: Thomas Sailer <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Michal Marek <[email protected]>
  • Loading branch information
michal42 committed May 25, 2011
1 parent c1afba3 commit b953ff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/hamradio/hdlcdrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ EXPORT_SYMBOL(hdlcdrv_unregister);
static int __init hdlcdrv_init_driver(void)
{
printk(KERN_INFO "hdlcdrv: (C) 1996-2000 Thomas Sailer HB9JNX/AE4WA\n");
printk(KERN_INFO "hdlcdrv: version 0.8 compiled " __TIME__ " " __DATE__ "\n");
printk(KERN_INFO "hdlcdrv: version 0.8\n");
return 0;
}

Expand Down

0 comments on commit b953ff2

Please sign in to comment.