summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2013-12-23 13:55:19 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-01-09 08:46:29 -0800
commit0fcaf3bc1a12d4b21d4b215f831a7bc49baf6f04 (patch)
treee8b0e5097d26db55a47e7e43c731784965b55d55 /drivers
parentbf8c0f540cd480c327f9f8fe499c7c12a24526ac (diff)
staging: rts5139: Drop print of build time
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/rts5139/rts51x_scsi.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/rts5139/rts51x_scsi.c b/drivers/staging/rts5139/rts51x_scsi.c
index a474eede70a3..3a990253c780 100644
--- a/drivers/staging/rts5139/rts51x_scsi.c
+++ b/drivers/staging/rts5139/rts51x_scsi.c
@@ -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;
}