parport: Drop __TIME__ usage
authorMichal Marek <mmarek@suse.cz>
Fri, 1 Apr 2011 10:41:20 +0000 (12:41 +0200)
committerMichal Marek <mmarek@suse.cz>
Wed, 25 May 2011 20:42:56 +0000 (22:42 +0200)
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>
drivers/parport/parport_ip32.c

index d3d7809af8bf5287653ebe4b3e968489eba2c4cd..0dc34f12f92e5865f22ad503c582f8cf6ba4f88a 100644 (file)
@@ -2203,7 +2203,6 @@ static __exit void parport_ip32_unregister_port(struct parport *p)
 static int __init parport_ip32_init(void)
 {
        pr_info(PPIP32 "SGI IP32 built-in parallel port driver v0.6\n");
-       pr_debug1(PPIP32 "Compiled on %s, %s\n", __DATE__, __TIME__);
        this_port = parport_ip32_probe_port();
        return IS_ERR(this_port) ? PTR_ERR(this_port) : 0;
 }