Re: [PATCH 0/3] Omap header cleanup for upcoming 2.6.32 merge window

2009-08-24 Thread Tony Lindgren
* Tony Lindgren  [090806 13:09]:
> Hi all,
> 
> Here are few patches for the upcoming merge window to remove unnecessary
> ifdeffery in the header files.
> 
> We should get these merged early to avoid merge conflicts with other
> patchsets.

I've added this series into omap for-next branch.
 
> Regards,
> 
> Tony
> 
> ---
> 
> Tony Lindgren (3):
>   OMAP: Remove ifdefs for io.h
>   OMAP: Rename OMAP_MPUIO_BASE to OMAP1_MPUIO_BASE
>   OMAP: Remove OMAP_IO_ADDRESS, use OMAP1_IO_ADDRESS and OMAP2_IO_ADDRESS 
> instead
> 
> 
>  arch/arm/mach-omap1/devices.c |2 -
>  arch/arm/mach-omap1/io.c  |6 +-
>  arch/arm/mach-omap1/pm.h  |4 +
>  arch/arm/mach-omap1/serial.c  |6 +-
>  arch/arm/mach-omap1/sram.S|   12 ++-
>  arch/arm/mach-omap1/time.c|4 +
>  arch/arm/mach-omap2/board-4430sdp.c   |4 +
>  arch/arm/mach-omap2/cm.h  |6 +-
>  arch/arm/mach-omap2/omap-smp.c|2 -
>  arch/arm/mach-omap2/pm-debug.c|2 -
>  arch/arm/mach-omap2/prm.h |6 +-
>  arch/arm/mach-omap2/sdrc.h|6 +-
>  arch/arm/mach-omap2/serial.c  |6 +-
>  arch/arm/mach-omap2/sram242x.S|4 +
>  arch/arm/mach-omap2/sram243x.S|4 +
>  arch/arm/mach-omap2/timer-gp.c|2 -
>  arch/arm/plat-omap/dma.c  |8 +-
>  arch/arm/plat-omap/dmtimer.c  |5 +
>  arch/arm/plat-omap/gpio.c |   88 +++
>  arch/arm/plat-omap/include/mach/control.h |   12 ++-
>  arch/arm/plat-omap/include/mach/entry-macro.S |8 +-
>  arch/arm/plat-omap/include/mach/gpio.h|2 -
>  arch/arm/plat-omap/include/mach/io.h  |   97 
> -
>  arch/arm/plat-omap/include/mach/mtd-xip.h |2 -
>  arch/arm/plat-omap/include/mach/omap44xx.h|8 +-
>  arch/arm/plat-omap/include/mach/sdrc.h|6 +-
>  arch/arm/plat-omap/io.c   |   62 +++-
>  arch/arm/plat-omap/sram.c |   20 +++--
>  drivers/input/keyboard/omap-keypad.c  |   22 +++---
>  drivers/mtd/nand/ams-delta.c  |8 +-
>  drivers/video/omap/dispc.c|6 +-
>  31 files changed, 245 insertions(+), 185 deletions(-)
> 
> -- 
> Signature
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 0/3] Omap header cleanup for upcoming 2.6.32 merge window

2009-08-06 Thread Tony Lindgren
* Russell King - ARM Linux  [090806 14:01]:
> On Thu, Aug 06, 2009 at 01:08:56PM +0300, Tony Lindgren wrote:
> > Here are few patches for the upcoming merge window to remove unnecessary
> > ifdeffery in the header files.
> 
> I'm not sure what the plans are wrt OMAP1 vs the later OMAPs, but
> given that OMAP1 lives in a separate mach directory, I think it
> would make sense for the OMAP1 parts of the headers to be moved
> out to arch/arm/mach-omap1/include/mach, leaving the other parts
> in arch/arm/mach-omap2/include/mach.

Yees.

After this series is applied we can move the remaining omap1 specific
defines in hardware.h into omap1.h.
 
> Common stuff can be in arch/arm/plat-omap/include/plat/ and which
> should only really cover the code in arch/arm/plat-omap/

Sounds good.

Tony
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 0/3] Omap header cleanup for upcoming 2.6.32 merge window

2009-08-06 Thread Russell King - ARM Linux
On Thu, Aug 06, 2009 at 01:08:56PM +0300, Tony Lindgren wrote:
> Here are few patches for the upcoming merge window to remove unnecessary
> ifdeffery in the header files.

I'm not sure what the plans are wrt OMAP1 vs the later OMAPs, but
given that OMAP1 lives in a separate mach directory, I think it
would make sense for the OMAP1 parts of the headers to be moved
out to arch/arm/mach-omap1/include/mach, leaving the other parts
in arch/arm/mach-omap2/include/mach.

Common stuff can be in arch/arm/plat-omap/include/plat/ and which
should only really cover the code in arch/arm/plat-omap/
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 0/3] Omap header cleanup for upcoming 2.6.32 merge window

2009-08-06 Thread Tony Lindgren
Hi all,

Here are few patches for the upcoming merge window to remove unnecessary
ifdeffery in the header files.

We should get these merged early to avoid merge conflicts with other
patchsets.

Regards,

Tony

---

Tony Lindgren (3):
  OMAP: Remove ifdefs for io.h
  OMAP: Rename OMAP_MPUIO_BASE to OMAP1_MPUIO_BASE
  OMAP: Remove OMAP_IO_ADDRESS, use OMAP1_IO_ADDRESS and OMAP2_IO_ADDRESS 
instead


 arch/arm/mach-omap1/devices.c |2 -
 arch/arm/mach-omap1/io.c  |6 +-
 arch/arm/mach-omap1/pm.h  |4 +
 arch/arm/mach-omap1/serial.c  |6 +-
 arch/arm/mach-omap1/sram.S|   12 ++-
 arch/arm/mach-omap1/time.c|4 +
 arch/arm/mach-omap2/board-4430sdp.c   |4 +
 arch/arm/mach-omap2/cm.h  |6 +-
 arch/arm/mach-omap2/omap-smp.c|2 -
 arch/arm/mach-omap2/pm-debug.c|2 -
 arch/arm/mach-omap2/prm.h |6 +-
 arch/arm/mach-omap2/sdrc.h|6 +-
 arch/arm/mach-omap2/serial.c  |6 +-
 arch/arm/mach-omap2/sram242x.S|4 +
 arch/arm/mach-omap2/sram243x.S|4 +
 arch/arm/mach-omap2/timer-gp.c|2 -
 arch/arm/plat-omap/dma.c  |8 +-
 arch/arm/plat-omap/dmtimer.c  |5 +
 arch/arm/plat-omap/gpio.c |   88 +++
 arch/arm/plat-omap/include/mach/control.h |   12 ++-
 arch/arm/plat-omap/include/mach/entry-macro.S |8 +-
 arch/arm/plat-omap/include/mach/gpio.h|2 -
 arch/arm/plat-omap/include/mach/io.h  |   97 -
 arch/arm/plat-omap/include/mach/mtd-xip.h |2 -
 arch/arm/plat-omap/include/mach/omap44xx.h|8 +-
 arch/arm/plat-omap/include/mach/sdrc.h|6 +-
 arch/arm/plat-omap/io.c   |   62 +++-
 arch/arm/plat-omap/sram.c |   20 +++--
 drivers/input/keyboard/omap-keypad.c  |   22 +++---
 drivers/mtd/nand/ams-delta.c  |8 +-
 drivers/video/omap/dispc.c|6 +-
 31 files changed, 245 insertions(+), 185 deletions(-)

-- 
Signature
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html