aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMichal Marek <mmarek@suse.cz>2011-04-01 06:41:20 -0400
committerMichal Marek <mmarek@suse.cz>2011-04-18 18:23:21 -0400
commit4c315a5d57300db83d2eb7b8d5b6019e1fba99fc (patch)
tree306a36f108debd12834579c74471c70541b6e8e8 /drivers
parent571b16da39922cf71db41c10852d798a44686c15 (diff)
scsi/in2000: Drop __TIME__ usage
The kernel already prints its build timestamp during boot, no need to repeat it in random drivers and produce different object files each time. Cc: "James E.J. Bottomley" <James.Bottomley@suse.de> Cc: linux-scsi@vger.kernel.org Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/scsi/in2000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/in2000.c b/drivers/scsi/in2000.c
index 6568aab745a0..6096d9340407 100644
--- a/drivers/scsi/in2000.c
+++ b/drivers/scsi/in2000.c
@@ -2228,7 +2228,7 @@ static int in2000_proc_info(struct Scsi_Host *instance, char *buf, char **start,
2228 bp = buf; 2228 bp = buf;
2229 *bp = '\0'; 2229 *bp = '\0';
2230 if (hd->proc & PR_VERSION) { 2230 if (hd->proc & PR_VERSION) {
2231 sprintf(tbuf, "\nVersion %s - %s. Compiled %s %s", IN2000_VERSION, IN2000_DATE, __DATE__, __TIME__); 2231 sprintf(tbuf, "\nVersion %s - %s.", IN2000_VERSION, IN2000_DATE);
2232 strcat(bp, tbuf); 2232 strcat(bp, tbuf);
2233 } 2233 }
2234 if (hd->proc & PR_INFO) { 2234 if (hd->proc & PR_INFO) {