Skip to content

Commit

Permalink
cyclades: 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: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Michal Marek <mmarek@suse.cz>
  • Loading branch information
Michal Marek committed Apr 18, 2011
1 parent 0ce790e commit 64a14b5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/tty/cyclades.c
Original file line number Diff line number Diff line change
Expand Up @@ -4099,8 +4099,7 @@ static int __init cy_init(void)
if (!cy_serial_driver)
goto err;

printk(KERN_INFO "Cyclades driver " CY_VERSION " (built %s %s)\n",
__DATE__, __TIME__);
printk(KERN_INFO "Cyclades driver " CY_VERSION "\n");

/* Initialize the tty_driver structure */

Expand Down

0 comments on commit 64a14b5

Please sign in to comment.