Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scsi/wd33c93: 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>

+3 -4
+3 -4
drivers/scsi/wd33c93.c
··· 2052 2052 for (i = 0; i < MAX_SETUP_ARGS; i++) 2053 2053 printk("%s,", setup_args[i]); 2054 2054 printk("\n"); 2055 - printk(" Version %s - %s, Compiled %s at %s\n", 2056 - WD33C93_VERSION, WD33C93_DATE, __DATE__, __TIME__); 2055 + printk(" Version %s - %s\n", WD33C93_VERSION, WD33C93_DATE); 2057 2056 } 2058 2057 2059 2058 int ··· 2132 2133 bp = buf; 2133 2134 *bp = '\0'; 2134 2135 if (hd->proc & PR_VERSION) { 2135 - sprintf(tbuf, "\nVersion %s - %s. Compiled %s %s", 2136 - WD33C93_VERSION, WD33C93_DATE, __DATE__, __TIME__); 2136 + sprintf(tbuf, "\nVersion %s - %s.", 2137 + WD33C93_VERSION, WD33C93_DATE); 2137 2138 strcat(bp, tbuf); 2138 2139 } 2139 2140 if (hd->proc & PR_INFO) {