2011-04-05 15:01:40

by Michal Marek

[permalink] [raw]
Subject: [PATCH 20/34] 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.

Cc: Arnaud Giersch <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
---
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 d3d7809..0dc34f1 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)
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;
}
--
1.7.4.1


2011-04-05 20:09:38

by Arnaud Giersch

[permalink] [raw]
Subject: Re: [PATCH 20/34] parport: Drop __TIME__ usage

Mardi 05 avril 2011, vers 16:59:07 (+0200), Michal Marek a écrit :

> 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: Arnaud Giersch <[email protected]>
> Signed-off-by: Michal Marek <[email protected]>
> ---
> drivers/parport/parport_ip32.c | 1 -
> 1 files changed, 0 insertions(+), 1 deletions(-)

I do not use this module anymore, but anyway...

Acked-by: Arnaud Giersch <[email protected]>

Arnaud

2011-05-25 20:43:28

by Michal Marek

[permalink] [raw]
Subject: Re: [PATCH 20/34] parport: Drop __TIME__ usage

Dne 5.4.2011 22:00, Arnaud Giersch napsal(a):
> Mardi 05 avril 2011, vers 16:59:07 (+0200), Michal Marek a écrit :
>
>> 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: Arnaud Giersch <[email protected]>
>> Signed-off-by: Michal Marek <[email protected]>
>> ---
>> drivers/parport/parport_ip32.c | 1 -
>> 1 files changed, 0 insertions(+), 1 deletions(-)
>
> I do not use this module anymore, but anyway...
>
> Acked-by: Arnaud Giersch <[email protected]>

Applied to kbuild-2.6.git#trivial

Michal