Message ID | 1302015561-21047-29-git-send-email-mmarek@suse.cz (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Dne 5.4.2011 16:59, Michal Marek napsal(a): > 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: "David S. Miller" <davem@davemloft.net> > Cc: netdev@vger.kernel.org > Signed-off-by: Michal Marek <mmarek@suse.cz> > --- > net/atm/lec.c | 2 +- > net/atm/mpc.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) Hi, I don't see this patch in today's linux-next. Any objection against me applying it to the kbuild-2.6.git repository? Thanks, Michal > diff --git a/net/atm/lec.c b/net/atm/lec.c > index 38754fd..cb14ddf 100644 > --- a/net/atm/lec.c > +++ b/net/atm/lec.c > @@ -1173,7 +1173,7 @@ static int __init lane_module_init(void) > #endif > > register_atm_ioctl(&lane_ioctl_ops); > - pr_info("lec.c: " __DATE__ " " __TIME__ " initialized\n"); > + pr_info("lec.c: initialized\n"); > return 0; > } > > diff --git a/net/atm/mpc.c b/net/atm/mpc.c > index 644cdf0..3ccca42 100644 > --- a/net/atm/mpc.c > +++ b/net/atm/mpc.c > @@ -1482,7 +1482,7 @@ static __init int atm_mpoa_init(void) > if (mpc_proc_init() != 0) > pr_info("failed to initialize /proc/mpoa\n"); > > - pr_info("mpc.c: " __DATE__ " " __TIME__ " initialized\n"); > + pr_info("mpc.c: initialized\n"); > > return 0; > } -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
From: Michal Marek <mmarek@suse.cz> Date: Wed, 25 May 2011 22:49:29 +0200 > Dne 5.4.2011 16:59, Michal Marek napsal(a): >> 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: "David S. Miller" <davem@davemloft.net> >> Cc: netdev@vger.kernel.org >> Signed-off-by: Michal Marek <mmarek@suse.cz> >> --- >> net/atm/lec.c | 2 +- >> net/atm/mpc.c | 2 +- >> 2 files changed, 2 insertions(+), 2 deletions(-) > > Hi, > > I don't see this patch in today's linux-next. Any objection against me > applying it to the kbuild-2.6.git repository? Please apply it: Acked-by: David S. Miller <davem@davemloft.net> -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/net/atm/lec.c b/net/atm/lec.c index 38754fd..cb14ddf 100644 --- a/net/atm/lec.c +++ b/net/atm/lec.c @@ -1173,7 +1173,7 @@ static int __init lane_module_init(void) #endif register_atm_ioctl(&lane_ioctl_ops); - pr_info("lec.c: " __DATE__ " " __TIME__ " initialized\n"); + pr_info("lec.c: initialized\n"); return 0; } diff --git a/net/atm/mpc.c b/net/atm/mpc.c index 644cdf0..3ccca42 100644 --- a/net/atm/mpc.c +++ b/net/atm/mpc.c @@ -1482,7 +1482,7 @@ static __init int atm_mpoa_init(void) if (mpc_proc_init() != 0) pr_info("failed to initialize /proc/mpoa\n"); - pr_info("mpc.c: " __DATE__ " " __TIME__ " initialized\n"); + pr_info("mpc.c: initialized\n"); return 0; }
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: "David S. Miller" <davem@davemloft.net> Cc: netdev@vger.kernel.org Signed-off-by: Michal Marek <mmarek@suse.cz> --- net/atm/lec.c | 2 +- net/atm/mpc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)