diff options
author | Michal Marek <mmarek@suse.cz> | 2011-04-01 06:41:20 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-05-25 16:42:56 -0400 |
commit | f1a7ee977df9f5c0f18449a9280d62ba04daed0c (patch) | |
tree | adc07b2c842778e2fb6c49ae5802998ca36fb758 | |
parent | b953ff2238661cd95513a8f2837197c6f77a642f (diff) |
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>
-rw-r--r-- | drivers/parport/parport_ip32.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/parport/parport_ip32.c b/drivers/parport/parport_ip32.c index d3d7809af8bf..0dc34f12f92e 100644 --- a/drivers/parport/parport_ip32.c +++ b/drivers/parport/parport_ip32.c | |||
@@ -2203,7 +2203,6 @@ static __exit void parport_ip32_unregister_port(struct parport *p) | |||
2203 | static int __init parport_ip32_init(void) | 2203 | static int __init parport_ip32_init(void) |
2204 | { | 2204 | { |
2205 | pr_info(PPIP32 "SGI IP32 built-in parallel port driver v0.6\n"); | 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 | this_port = parport_ip32_probe_port(); | 2206 | this_port = parport_ip32_probe_port(); |
2208 | return IS_ERR(this_port) ? PTR_ERR(this_port) : 0; | 2207 | return IS_ERR(this_port) ? PTR_ERR(this_port) : 0; |
2209 | } | 2208 | } |