Skip to content

Commit

Permalink
baycom: 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 <t.sailer@alumni.ethz.ch>
Cc: linux-hams@vger.kernel.org
Cc: netdev@vger.kernel.org
Signed-off-by: Michal Marek <mmarek@suse.cz>
  • Loading branch information
Michal Marek committed May 25, 2011
1 parent a1b6666 commit c1afba3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/net/hamradio/baycom_epp.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static const char paranoia_str[] = KERN_ERR

static const char bc_drvname[] = "baycom_epp";
static const char bc_drvinfo[] = KERN_INFO "baycom_epp: (C) 1998-2000 Thomas Sailer, HB9JNX/AE4WA\n"
"baycom_epp: version 0.7 compiled " __TIME__ " " __DATE__ "\n";
"baycom_epp: version 0.7\n";

/* --------------------------------------------------------------------- */

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/hamradio/baycom_par.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@

static const char bc_drvname[] = "baycom_par";
static const char bc_drvinfo[] = KERN_INFO "baycom_par: (C) 1996-2000 Thomas Sailer, HB9JNX/AE4WA\n"
"baycom_par: version 0.9 compiled " __TIME__ " " __DATE__ "\n";
"baycom_par: version 0.9\n";

/* --------------------------------------------------------------------- */

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/hamradio/baycom_ser_fdx.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

static const char bc_drvname[] = "baycom_ser_fdx";
static const char bc_drvinfo[] = KERN_INFO "baycom_ser_fdx: (C) 1996-2000 Thomas Sailer, HB9JNX/AE4WA\n"
"baycom_ser_fdx: version 0.10 compiled " __TIME__ " " __DATE__ "\n";
"baycom_ser_fdx: version 0.10\n";

/* --------------------------------------------------------------------- */

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/hamradio/baycom_ser_hdx.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@

static const char bc_drvname[] = "baycom_ser_hdx";
static const char bc_drvinfo[] = KERN_INFO "baycom_ser_hdx: (C) 1996-2000 Thomas Sailer, HB9JNX/AE4WA\n"
"baycom_ser_hdx: version 0.10 compiled " __TIME__ " " __DATE__ "\n";
"baycom_ser_hdx: version 0.10\n";

/* --------------------------------------------------------------------- */

Expand Down

0 comments on commit c1afba3

Please sign in to comment.