]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: rts5139: Drop print of build time
authorJosh Triplett <josh@joshtriplett.org>
Mon, 23 Dec 2013 21:55:19 +0000 (13:55 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jan 2014 16:46:29 +0000 (08:46 -0800)
The kernel already has this information, and individual drivers
shouldn't duplicate that.  This also eliminates the use of __TIME__,
which makes the build non-deterministic.  (And, without __DATE__,
__TIME__ provided little useful information to begin with.)

Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts5139/rts51x_scsi.c

index a474eede70a32bf05cc2152fa64b0f107b707a1b..3a990253c780f2f20828eb2c485c459d72750f6d 100644 (file)
@@ -1985,7 +1985,6 @@ static int show_info(struct seq_file *m, struct Scsi_Host *host)
        SPRINTF("       Vendor: Realtek Corp.\n");
        SPRINTF("      Product: RTS51xx USB Card Reader\n");
        SPRINTF("      Version: %s\n", DRIVER_VERSION);
-       SPRINTF("        Build: %s\n", __TIME__);
        return 0;
 }