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

parport: 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.

Acked-by: Arnaud Giersch <arnaud.giersch@free.fr>
Signed-off-by: Michal Marek <mmarek@suse.cz>

-1
-1
drivers/parport/parport_ip32.c
··· 2203 2203 static int __init parport_ip32_init(void) 2204 2204 { 2205 2205 pr_info(PPIP32 "SGI IP32 built-in parallel port driver v0.6\n"); 2206 - pr_debug1(PPIP32 "Compiled on %s, %s\n", __DATE__, __TIME__); 2207 2206 this_port = parport_ip32_probe_port(); 2208 2207 return IS_ERR(this_port) ? PTR_ERR(this_port) : 0; 2209 2208 }