linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/10] OMAP2/TWL: Fix Sparse warnings
@ 2010-09-21 10:01 G, Manjunath Kondaiah
  2010-09-21 10:01 ` [PATCH v2 01/10] OMAP: mach-omap2: Fix incorrect assignment warnings G, Manjunath Kondaiah
                   ` (9 more replies)
  0 siblings, 10 replies; 28+ messages in thread
From: G, Manjunath Kondaiah @ 2010-09-21 10:01 UTC (permalink / raw)
  To: linux-omap; +Cc: linux-arm-kernel, Tony Lindgren, Nishanth Menon

This v2 version of sparse fixes series has review comments incorporated
which are archived at:
http://www.spinics.net/lists/linux-omap/msg35427.html

Out of total 11 patches in v1 series, three patches are dropped from this version
since two patches are accepted and already applied in other mailing lists.
The remaining one patch requires clarification on API usage in audio driver.

With 2.6.36-rc5, some more sparse warnings are introduced. For fixing these
new warnings, two new patches added into this series.

As per tony's suggestion, 
http://www.spinics.net/lists/linux-omap/msg36474.html

I have cc'ed respective maintainers and mailing lists for the patches and also
I will setup git branch for these patches for pull request if there are no 
further review comments.

Testing:
========
Patch series tested and verified with omap3_defconfig build and boot tested
on omap zoom3.

G, Manjunath Kondaiah (10):
  OMAP: mach-omap2: Fix miscellaneous sparse warnings
  OMAP: mach-omap2: Fix incorrect assignment warnings
  OMAP: mach-omap2: Fix static declaration warnings
  OMAP: mach-omap2: Fix static function warnings
  OMAP: plat-omap: Fix static function warnings
  OMAP: NAND: Fix static declaration warning
  TWL CORE: Fix sparse warning
  TWL IRQ: Fix fucntion declaration warnings
  OMAP2/3: Convert write/read functions to raw read/write
  OMAP3: Keypad: Fix incorrect type initializer

 arch/arm/mach-omap2/board-3430sdp.c            |    2 +-
 arch/arm/mach-omap2/board-am3517evm.c          |    5 +--
 arch/arm/mach-omap2/board-cm-t35.c             |    2 +-
 arch/arm/mach-omap2/board-devkit8000.c         |    2 +-
 arch/arm/mach-omap2/board-igep0020.c           |    4 +-
 arch/arm/mach-omap2/board-ldp.c                |    2 +-
 arch/arm/mach-omap2/board-n8x0.c               |   16 +------------
 arch/arm/mach-omap2/board-omap3evm.c           |    8 +++---
 arch/arm/mach-omap2/board-omap3stalker.c       |    4 +-
 arch/arm/mach-omap2/board-omap3touchbook.c     |    2 +-
 arch/arm/mach-omap2/board-rx51-peripherals.c   |    4 ++-
 arch/arm/mach-omap2/board-rx51-sdram.c         |    2 +-
 arch/arm/mach-omap2/board-rx51-video.c         |    2 +
 arch/arm/mach-omap2/board-zoom-debugboard.c    |    2 +
 arch/arm/mach-omap2/board-zoom-peripherals.c   |    4 ++-
 arch/arm/mach-omap2/control.c                  |    5 ++-
 arch/arm/mach-omap2/gpmc-onenand.c             |    8 +++---
 arch/arm/mach-omap2/include/mach/board-flash.h |    2 +
 arch/arm/mach-omap2/include/mach/board-rx51.h  |   11 +++++++++
 arch/arm/mach-omap2/irq.c                      |    1 -
 arch/arm/mach-omap2/mux2420.c                  |    2 +-
 arch/arm/mach-omap2/mux2430.c                  |    2 +-
 arch/arm/mach-omap2/mux34xx.c                  |   12 +++++-----
 arch/arm/mach-omap2/pm-debug.c                 |    2 +-
 arch/arm/mach-omap2/pm34xx.c                   |    2 +-
 arch/arm/mach-omap2/powerdomain.c              |   28 ------------------------
 arch/arm/mach-omap2/prcm.c                     |    2 +-
 arch/arm/mach-omap2/timer-gp.c                 |    1 +
 arch/arm/plat-omap/cpu-omap.c                  |    4 +-
 arch/arm/plat-omap/dmtimer.c                   |    6 ++--
 arch/arm/plat-omap/fb.c                        |    1 +
 arch/arm/plat-omap/include/plat/dmtimer.h      |    4 ++-
 arch/arm/plat-omap/include/plat/sdrc.h         |    1 +
 arch/arm/plat-omap/mcbsp.c                     |   10 ++++----
 arch/arm/plat-omap/sram.c                      |   13 ++++++-----
 drivers/mfd/twl-core.c                         |    2 +-
 drivers/mtd/nand/omap2.c                       |    6 ++--
 drivers/mtd/onenand/omap2.c                    |    2 +-
 include/linux/i2c/twl.h                        |    5 ++++
 include/linux/omapfb.h                         |    5 ++++
 40 files changed, 96 insertions(+), 102 deletions(-)
 create mode 100644 arch/arm/mach-omap2/include/mach/board-rx51.h

Cc: linux-arm-kernel@lists.infradead.org
Cc: Tony Lindgren <tony@atomide.com>
Cc: Nishanth Menon <nm@ti.com>

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

end of thread, other threads:[~2010-10-25 10:11 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-21 10:01 [PATCH v2 00/10] OMAP2/TWL: Fix Sparse warnings G, Manjunath Kondaiah
2010-09-21 10:01 ` [PATCH v2 01/10] OMAP: mach-omap2: Fix incorrect assignment warnings G, Manjunath Kondaiah
2010-10-08 20:12   ` Kevin Hilman
2010-10-11  3:51     ` G, Manjunath Kondaiah
2010-09-21 10:01 ` [PATCH v2 02/10] OMAP: mach-omap2: Fix static declaration warnings G, Manjunath Kondaiah
2010-09-21 10:01 ` [PATCH v2 03/10] OMAP: mach-omap2: Fix static function warnings G, Manjunath Kondaiah
2010-09-29 21:35   ` Paul Walmsley
2010-09-29 23:49     ` G, Manjunath Kondaiah
2010-09-21 10:01 ` [PATCH v2 04/10] OMAP: mach-omap2: Fix miscellaneous sparse warnings G, Manjunath Kondaiah
2010-09-21 10:01 ` [PATCH v2 05/10] OMAP: plat-omap: Fix static function warnings G, Manjunath Kondaiah
2010-09-21 10:01 ` [PATCH v2 06/10] OMAP: NAND: Fix static declaration warning G, Manjunath Kondaiah
2010-09-21 10:01 ` [PATCH v2 07/10] TWL CORE: Fix sparse warning G, Manjunath Kondaiah
2010-09-27 11:07   ` Samuel Ortiz
2010-09-21 10:01 ` [PATCH v2 08/10] TWL IRQ: Fix fucntion declaration warnings G, Manjunath Kondaiah
2010-09-27 11:16   ` Samuel Ortiz
2010-09-27 13:10     ` G, Manjunath Kondaiah
2010-09-27 13:49       ` G, Manjunath Kondaiah
2010-09-27 14:46         ` Samuel Ortiz
2010-09-21 10:01 ` [PATCH v2 09/10] OMAP2/3: Convert write/read functions to raw read/write G, Manjunath Kondaiah
2010-10-07 12:17   ` Menon, Nishanth
2010-10-07 18:56     ` Russell King - ARM Linux
2010-10-07 19:50       ` Nishanth Menon
2010-10-25  0:01         ` David Woodhouse
2010-10-25  5:34           ` G, Manjunath Kondaiah
2010-10-25 10:11             ` David Woodhouse
2010-10-25  7:54           ` Artem Bityutskiy
2010-10-07 17:39   ` Vimal Singh
2010-09-21 10:01 ` [PATCH v2 10/10] OMAP3: Keypad: Fix incorrect type initializer G, Manjunath Kondaiah

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).