linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
@ 2013-11-15 14:00 Uwe Kleine-König
  2013-11-15 14:23 ` Jean-Christophe PLAGNIOL-VILLARD
  2013-11-26 13:41 ` Uwe Kleine-König
  0 siblings, 2 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2013-11-15 14:00 UTC (permalink / raw)
  To: linux-arm-kernel

The driver needs the symbol AT91_SLOW_CLOCK which is defined in
arch/arm/mach-at91/include/mach/hardware.h. This file is included
implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .

So better include it explicitly not only because the last link will go
away soon.

Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
---
 drivers/rtc/rtc-at91sam9.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c
index 309b8b3..5963743 100644
--- a/drivers/rtc/rtc-at91sam9.c
+++ b/drivers/rtc/rtc-at91sam9.c
@@ -24,7 +24,7 @@
 
 #include <mach/at91_rtt.h>
 #include <mach/cpu.h>
-
+#include <mach/hardware.h>
 
 /*
  * This driver uses two configurable hardware resources that live in the
-- 
1.8.4.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-11-15 14:00 [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly Uwe Kleine-König
@ 2013-11-15 14:23 ` Jean-Christophe PLAGNIOL-VILLARD
  2013-11-15 14:55   ` Uwe Kleine-König
  2013-11-26 13:41 ` Uwe Kleine-König
  1 sibling, 1 reply; 11+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-11-15 14:23 UTC (permalink / raw)
  To: linux-arm-kernel

On 15:00 Fri 15 Nov     , Uwe Kleine-K??nig wrote:
> The driver needs the symbol AT91_SLOW_CLOCK which is defined in
> arch/arm/mach-at91/include/mach/hardware.h. This file is included
> implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
> linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
> linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
> linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
> 
> So better include it explicitly not only because the last link will go
> away soon.
> 
> Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>

we should never use this symbol you need to request the clock clk32k

Best Regards,
J.
> ---
>  drivers/rtc/rtc-at91sam9.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c
> index 309b8b3..5963743 100644
> --- a/drivers/rtc/rtc-at91sam9.c
> +++ b/drivers/rtc/rtc-at91sam9.c
> @@ -24,7 +24,7 @@
>  
>  #include <mach/at91_rtt.h>
>  #include <mach/cpu.h>
> -
> +#include <mach/hardware.h>
>  
>  /*
>   * This driver uses two configurable hardware resources that live in the
> -- 
> 1.8.4.2
> 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-11-15 14:23 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2013-11-15 14:55   ` Uwe Kleine-König
  2013-11-27  8:49     ` Nicolas Ferre
  0 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2013-11-15 14:55 UTC (permalink / raw)
  To: linux-arm-kernel

Hello,

On Fri, Nov 15, 2013 at 03:23:27PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 15:00 Fri 15 Nov     , Uwe Kleine-K??nig wrote:
> > The driver needs the symbol AT91_SLOW_CLOCK which is defined in
> > arch/arm/mach-at91/include/mach/hardware.h. This file is included
> > implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
> > linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
> > linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
> > linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
> > 
> > So better include it explicitly not only because the last link will go
> > away soon.
> > 
> > Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> 
> we should never use this symbol you need to request the clock clk32k
IMHO this should be addressed in another patch. My intent is to get rid
of <mach/timex.h>. So I let someone else take this patch opportunity.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-11-15 14:00 [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly Uwe Kleine-König
  2013-11-15 14:23 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2013-11-26 13:41 ` Uwe Kleine-König
  2013-11-26 13:44   ` Uwe Kleine-König
  1 sibling, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2013-11-26 13:41 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Nov 15, 2013 at 03:00:58PM +0100, Uwe Kleine-K?nig wrote:
> The driver needs the symbol AT91_SLOW_CLOCK which is defined in
> arch/arm/mach-at91/include/mach/hardware.h. This file is included
> implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
> linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
> linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
> linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
> 
> So better include it explicitly not only because the last link will go
> away soon.
> 
> Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
Ping. Is this patch ok despite Jean-Christophe's objection?

Best regards
Uwe

> ---
>  drivers/rtc/rtc-at91sam9.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c
> index 309b8b3..5963743 100644
> --- a/drivers/rtc/rtc-at91sam9.c
> +++ b/drivers/rtc/rtc-at91sam9.c
> @@ -24,7 +24,7 @@
>  
>  #include <mach/at91_rtt.h>
>  #include <mach/cpu.h>
> -
> +#include <mach/hardware.h>
>  
>  /*
>   * This driver uses two configurable hardware resources that live in the
> -- 
> 1.8.4.2
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-11-26 13:41 ` Uwe Kleine-König
@ 2013-11-26 13:44   ` Uwe Kleine-König
  2013-11-26 18:36     ` Uwe Kleine-König
  0 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2013-11-26 13:44 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 26, 2013 at 02:41:17PM +0100, Uwe Kleine-K?nig wrote:
> On Fri, Nov 15, 2013 at 03:00:58PM +0100, Uwe Kleine-K?nig wrote:
> > The driver needs the symbol AT91_SLOW_CLOCK which is defined in
> > arch/arm/mach-at91/include/mach/hardware.h. This file is included
> > implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
> > linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
> > linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
> > linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
> > 
> > So better include it explicitly not only because the last link will go
> > away soon.
> > 
> > Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> Ping. Is this patch ok despite Jean-Christophe's objection?
I saw that akpm already took it into his tree.

Best regards
Uwe

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-11-26 13:44   ` Uwe Kleine-König
@ 2013-11-26 18:36     ` Uwe Kleine-König
  2013-12-16  8:11       ` Andrew Morton
  0 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2013-11-26 18:36 UTC (permalink / raw)
  To: linux-arm-kernel

Hello Andrew,

On Tue, Nov 26, 2013 at 02:44:44PM +0100, Uwe Kleine-K?nig wrote:
> On Tue, Nov 26, 2013 at 02:41:17PM +0100, Uwe Kleine-K?nig wrote:
> > On Fri, Nov 15, 2013 at 03:00:58PM +0100, Uwe Kleine-K?nig wrote:
> > > The driver needs the symbol AT91_SLOW_CLOCK which is defined in
> > > arch/arm/mach-at91/include/mach/hardware.h. This file is included
> > > implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
> > > linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
> > > linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
> > > linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
> > > 
> > > So better include it explicitly not only because the last link will go
> > > away soon.
> > > 
> > > Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> > Ping. Is this patch ok despite Jean-Christophe's objection?
> I saw that akpm already took it into his tree.
This patch is one of the last few that are needed to drop <mach/timex.h>
alltogether that I don't have an ack from the respective maintainer yet.

Can you give your ack instead of sending the patch to Linus, then I'd
take it with the patch dropping <mach/timex.h> to make it easier to
merge.

Thanks
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-11-15 14:55   ` Uwe Kleine-König
@ 2013-11-27  8:49     ` Nicolas Ferre
  0 siblings, 0 replies; 11+ messages in thread
From: Nicolas Ferre @ 2013-11-27  8:49 UTC (permalink / raw)
  To: linux-arm-kernel

On 15/11/2013 15:55, Uwe Kleine-K?nig :
> Hello,
>
> On Fri, Nov 15, 2013 at 03:23:27PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
>> On 15:00 Fri 15 Nov     , Uwe Kleine-K??nig wrote:
>>> The driver needs the symbol AT91_SLOW_CLOCK which is defined in
>>> arch/arm/mach-at91/include/mach/hardware.h. This file is included
>>> implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
>>> linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
>>> linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
>>> linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
>>>
>>> So better include it explicitly not only because the last link will go
>>> away soon.
>>>
>>> Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
>>
>> we should never use this symbol you need to request the clock clk32k
> IMHO this should be addressed in another patch. My intent is to get rid
> of <mach/timex.h>. So I let someone else take this patch opportunity.

I understand the objective of this patch.

So, in the meantime, you have my:

Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>

(if it is not too late, Uwe).

Thanks for addressing that, bye,
-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-11-26 18:36     ` Uwe Kleine-König
@ 2013-12-16  8:11       ` Andrew Morton
  2013-12-16 19:28         ` Uwe Kleine-König
  0 siblings, 1 reply; 11+ messages in thread
From: Andrew Morton @ 2013-12-16  8:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, 26 Nov 2013 19:36:29 +0100 Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de> wrote:

> Hello Andrew,
> 
> On Tue, Nov 26, 2013 at 02:44:44PM +0100, Uwe Kleine-K__nig wrote:
> > On Tue, Nov 26, 2013 at 02:41:17PM +0100, Uwe Kleine-K__nig wrote:
> > > On Fri, Nov 15, 2013 at 03:00:58PM +0100, Uwe Kleine-K__nig wrote:
> > > > The driver needs the symbol AT91_SLOW_CLOCK which is defined in
> > > > arch/arm/mach-at91/include/mach/hardware.h. This file is included
> > > > implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
> > > > linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
> > > > linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
> > > > linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
> > > > 
> > > > So better include it explicitly not only because the last link will go
> > > > away soon.
> > > > 
> > > > Signed-off-by: Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de>
> > > Ping. Is this patch ok despite Jean-Christophe's objection?
> > I saw that akpm already took it into his tree.
> This patch is one of the last few that are needed to drop <mach/timex.h>
> alltogether that I don't have an ack from the respective maintainer yet.
> 
> Can you give your ack instead of sending the patch to Linus, then I'd
> take it with the patch dropping <mach/timex.h> to make it easier to
> merge.

ack ;)

I dropped my copy.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-12-16  8:11       ` Andrew Morton
@ 2013-12-16 19:28         ` Uwe Kleine-König
  2013-12-16 22:46           ` Andrew Morton
  0 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2013-12-16 19:28 UTC (permalink / raw)
  To: linux-arm-kernel

Hello Andrew,

On Mon, Dec 16, 2013 at 12:11:58AM -0800, Andrew Morton wrote:
> On Tue, 26 Nov 2013 19:36:29 +0100 Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de> wrote:
> > On Tue, Nov 26, 2013 at 02:44:44PM +0100, Uwe Kleine-K__nig wrote:
> > > On Tue, Nov 26, 2013 at 02:41:17PM +0100, Uwe Kleine-K__nig wrote:
> > > > On Fri, Nov 15, 2013 at 03:00:58PM +0100, Uwe Kleine-K__nig wrote:
> > > > > The driver needs the symbol AT91_SLOW_CLOCK which is defined in
> > > > > arch/arm/mach-at91/include/mach/hardware.h. This file is included
> > > > > implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
> > > > > linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
> > > > > linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
> > > > > linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
> > > > > 
> > > > > So better include it explicitly not only because the last link will go
> > > > > away soon.
> > > > > 
> > > > > Signed-off-by: Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de>
> > > > Ping. Is this patch ok despite Jean-Christophe's objection?
> > > I saw that akpm already took it into his tree.
> > This patch is one of the last few that are needed to drop <mach/timex.h>
> > alltogether that I don't have an ack from the respective maintainer yet.
> > 
> > Can you give your ack instead of sending the patch to Linus, then I'd
> > take it with the patch dropping <mach/timex.h> to make it easier to
> > merge.
> 
> ack ;)
thanks. There is another rtc change that I didn't receive any feedback
for from a maintainer:

	rtc: pxa: drop unused #define TIMER_FREQ

. In the meantime I send a pull request asking to ignore that I didn't
get any maintainer reply for the rtc changes. Do you think it's sensible
to change the entry in MAINTAINERS? Any combination of:

	a) drop Alessandro's M: line
	b) add you
	c) change Status from Maintained to Odd Fixes or Orphan

> I dropped my copy.
fine, thanks

I'll wait for some time now before adding your ack to my tree to prevent
that you give me an ack for the other change just when I sent a new pull
request :-)

Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-12-16 19:28         ` Uwe Kleine-König
@ 2013-12-16 22:46           ` Andrew Morton
  2013-12-17  8:15             ` Uwe Kleine-König
  0 siblings, 1 reply; 11+ messages in thread
From: Andrew Morton @ 2013-12-16 22:46 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, 16 Dec 2013 20:28:16 +0100 Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de> wrote:

> Hello Andrew,
> 
> On Mon, Dec 16, 2013 at 12:11:58AM -0800, Andrew Morton wrote:
> > On Tue, 26 Nov 2013 19:36:29 +0100 Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de> wrote:
> > > On Tue, Nov 26, 2013 at 02:44:44PM +0100, Uwe Kleine-K__nig wrote:
> > > > On Tue, Nov 26, 2013 at 02:41:17PM +0100, Uwe Kleine-K__nig wrote:
> > > > > On Fri, Nov 15, 2013 at 03:00:58PM +0100, Uwe Kleine-K__nig wrote:
> > > > > > The driver needs the symbol AT91_SLOW_CLOCK which is defined in
> > > > > > arch/arm/mach-at91/include/mach/hardware.h. This file is included
> > > > > > implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
> > > > > > linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
> > > > > > linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
> > > > > > linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
> > > > > > 
> > > > > > So better include it explicitly not only because the last link will go
> > > > > > away soon.
> > > > > > 
> > > > > > Signed-off-by: Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de>
> > > > > Ping. Is this patch ok despite Jean-Christophe's objection?
> > > > I saw that akpm already took it into his tree.
> > > This patch is one of the last few that are needed to drop <mach/timex.h>
> > > alltogether that I don't have an ack from the respective maintainer yet.
> > > 
> > > Can you give your ack instead of sending the patch to Linus, then I'd
> > > take it with the patch dropping <mach/timex.h> to make it easier to
> > > merge.
> > 
> > ack ;)
> thanks. There is another rtc change that I didn't receive any feedback
> for from a maintainer:
> 
> 	rtc: pxa: drop unused #define TIMER_FREQ

ack.  Robert Jarzmik also acked that one.

> . In the meantime I send a pull request asking to ignore that I didn't
> get any maintainer reply for the rtc changes. Do you think it's sensible
> to change the entry in MAINTAINERS? Any combination of:
> 
> 	a) drop Alessandro's M: line
> 	b) add you
> 	c) change Status from Maintained to Odd Fixes or Orphan

Yeah, I should have a couple hundred MAINTAINERS entries.  Instead I
just lurk on mailing lists ;)

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly
  2013-12-16 22:46           ` Andrew Morton
@ 2013-12-17  8:15             ` Uwe Kleine-König
  0 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2013-12-17  8:15 UTC (permalink / raw)
  To: linux-arm-kernel

Hello Andrew,

On Mon, Dec 16, 2013 at 02:46:12PM -0800, Andrew Morton wrote:
> On Mon, 16 Dec 2013 20:28:16 +0100 Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de> wrote:
> 
> > Hello Andrew,
> > 
> > On Mon, Dec 16, 2013 at 12:11:58AM -0800, Andrew Morton wrote:
> > > On Tue, 26 Nov 2013 19:36:29 +0100 Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de> wrote:
> > > > On Tue, Nov 26, 2013 at 02:44:44PM +0100, Uwe Kleine-K__nig wrote:
> > > > > On Tue, Nov 26, 2013 at 02:41:17PM +0100, Uwe Kleine-K__nig wrote:
> > > > > > On Fri, Nov 15, 2013 at 03:00:58PM +0100, Uwe Kleine-K__nig wrote:
> > > > > > > The driver needs the symbol AT91_SLOW_CLOCK which is defined in
> > > > > > > arch/arm/mach-at91/include/mach/hardware.h. This file is included
> > > > > > > implicitly via linux/module.h -> linux/kmod.h -> linux/gfp.h ->
> > > > > > > linux/mmzone.h -> linux/memory_hotplug.h -> linux/notifier.h ->
> > > > > > > linux/srcu.h -> linux/workqueue.h -> linux/timer.h -> linux/ktime.h ->
> > > > > > > linux/jiffies.h -> linux/timex.h -> mach/timex.h -> mach/hardware.h .
> > > > > > > 
> > > > > > > So better include it explicitly not only because the last link will go
> > > > > > > away soon.
> > > > > > > 
> > > > > > > Signed-off-by: Uwe Kleine-K__nig <u.kleine-koenig@pengutronix.de>
> > > > > > Ping. Is this patch ok despite Jean-Christophe's objection?
> > > > > I saw that akpm already took it into his tree.
> > > > This patch is one of the last few that are needed to drop <mach/timex.h>
> > > > alltogether that I don't have an ack from the respective maintainer yet.
> > > > 
> > > > Can you give your ack instead of sending the patch to Linus, then I'd
> > > > take it with the patch dropping <mach/timex.h> to make it easier to
> > > > merge.
> > > 
> > > ack ;)
> > thanks. There is another rtc change that I didn't receive any feedback
> > for from a maintainer:
> > 
> > 	rtc: pxa: drop unused #define TIMER_FREQ
> 
> ack.  Robert Jarzmik also acked that one.
Thanks, I saw Robert Jarzmik's ack, but for taking a $subsystem1 patch through
the $subsystem2 tree, I like to have an ack of the maintainer of
$subsystem1. And in this regard I think yours is better than Robert's
(who is the original author of the driver).

> > . In the meantime I send a pull request asking to ignore that I didn't
> > get any maintainer reply for the rtc changes. Do you think it's sensible
> > to change the entry in MAINTAINERS? Any combination of:
> > 
> > 	a) drop Alessandro's M: line
> > 	b) add you
> > 	c) change Status from Maintained to Odd Fixes or Orphan
> 
> Yeah, I should have a couple hundred MAINTAINERS entries.  Instead I
> just lurk on mailing lists ;)
So only a) and c).

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-12-17  8:15 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-15 14:00 [PATCH] rtc: at91sam9: include <mach/hardware.h> explicitly Uwe Kleine-König
2013-11-15 14:23 ` Jean-Christophe PLAGNIOL-VILLARD
2013-11-15 14:55   ` Uwe Kleine-König
2013-11-27  8:49     ` Nicolas Ferre
2013-11-26 13:41 ` Uwe Kleine-König
2013-11-26 13:44   ` Uwe Kleine-König
2013-11-26 18:36     ` Uwe Kleine-König
2013-12-16  8:11       ` Andrew Morton
2013-12-16 19:28         ` Uwe Kleine-König
2013-12-16 22:46           ` Andrew Morton
2013-12-17  8:15             ` Uwe Kleine-König

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).