public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd
@ 2008-10-15 13:37 Peter 'p2' De Schrijver
  2008-10-15 13:37 ` [PATCH 1/6] Add defines and data types for twl4030 Peter 'p2' De Schrijver
  0 siblings, 1 reply; 12+ messages in thread
From: Peter 'p2' De Schrijver @ 2008-10-15 13:37 UTC (permalink / raw)
  To: linux-omap; +Cc: Peter 'p2' De Schrijver

This patchset integrates the twl4030 power code into the new twl4030 mfd framework. The scripts will be moved to the board specific data.

Peter 'p2' De Schrijver (6):
  Add defines and data types for twl4030.
  Move existing TWL4030 code to drivers/mfd
  Hook twl4030 power code into twl4030 core.
  3430sdp and ldp use custom twl4030 power scripts.
  Generic twl4030 power script for 3430 based boards.
  omap3 evm, beagle and overo use the generic twl4030 script

 arch/arm/mach-omap2/Makefile                  |    9 +-
 arch/arm/mach-omap2/board-3430sdp.c           |   84 ++++++
 arch/arm/mach-omap2/board-ldp.c               |   84 ++++++
 arch/arm/mach-omap2/board-omap3beagle.c       |    4 +-
 arch/arm/mach-omap2/board-omap3evm.c          |    4 +-
 arch/arm/mach-omap2/board-overo.c             |    4 +-
 arch/arm/mach-omap2/twl4030-generic-scripts.c |   78 ++++++
 arch/arm/mach-omap2/twl4030-generic-scripts.h |    8 +
 drivers/i2c/chips/Makefile                    |    2 +-
 drivers/i2c/chips/twl4030-power.c             |  343 -------------------------
 drivers/mfd/Kconfig                           |    9 +
 drivers/mfd/Makefile                          |    1 +
 drivers/mfd/twl4030-core.c                    |   11 +
 drivers/mfd/twl4030-power.c                   |  270 +++++++++++++++++++
 include/linux/i2c/twl4030.h                   |   64 +++++
 15 files changed, 622 insertions(+), 353 deletions(-)
 create mode 100644 arch/arm/mach-omap2/twl4030-generic-scripts.c
 create mode 100644 arch/arm/mach-omap2/twl4030-generic-scripts.h
 delete mode 100644 drivers/i2c/chips/twl4030-power.c
 create mode 100644 drivers/mfd/twl4030-power.c


^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd
@ 2008-10-20  8:37 Peter 'p2' De Schrijver
  2008-10-20  8:37 ` [PATCH 1/6] Add defines and data types for twl4030 Peter 'p2' De Schrijver
  0 siblings, 1 reply; 12+ messages in thread
From: Peter 'p2' De Schrijver @ 2008-10-20  8:37 UTC (permalink / raw)
  To: linux-omap; +Cc: Peter 'p2' De Schrijver

This patchset integrates the twl4030 power code into the new twl4030 mfd framework.
The scripts will be moved to the board specific data.

Peter 'p2' De Schrijver (6):
  Add defines and data types for twl4030.
  Move existing TWL4030 code to drivers/mfd
  Hook twl4030 power code into twl4030 core.
  3430sdp and ldp use custom twl4030 power scripts.
  Generic twl4030 power script for 3430 based boards.
  omap3 evm, beagle and overo use the generic twl4030 script

 arch/arm/mach-omap2/Makefile                  |    9 +-
 arch/arm/mach-omap2/board-3430sdp.c           |   84 ++++++
 arch/arm/mach-omap2/board-ldp.c               |   84 ++++++
 arch/arm/mach-omap2/board-omap3beagle.c       |    4 +-
 arch/arm/mach-omap2/board-omap3evm.c          |    4 +-
 arch/arm/mach-omap2/board-overo.c             |    4 +-
 arch/arm/mach-omap2/twl4030-generic-scripts.c |   78 ++++++
 arch/arm/mach-omap2/twl4030-generic-scripts.h |    8 +
 drivers/i2c/chips/Makefile                    |    1 -
 drivers/i2c/chips/twl4030-power.c             |  343 -------------------------
 drivers/mfd/Kconfig                           |    9 +
 drivers/mfd/Makefile                          |    1 +
 drivers/mfd/twl4030-core.c                    |   11 +
 drivers/mfd/twl4030-power.c                   |  270 +++++++++++++++++++
 include/linux/i2c/twl4030.h                   |   64 +++++
 15 files changed, 621 insertions(+), 353 deletions(-)
 create mode 100644 arch/arm/mach-omap2/twl4030-generic-scripts.c
 create mode 100644 arch/arm/mach-omap2/twl4030-generic-scripts.h
 delete mode 100644 drivers/i2c/chips/twl4030-power.c
 create mode 100644 drivers/mfd/twl4030-power.c


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

end of thread, other threads:[~2008-10-31 19:57 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-15 13:37 [PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd Peter 'p2' De Schrijver
2008-10-15 13:37 ` [PATCH 1/6] Add defines and data types for twl4030 Peter 'p2' De Schrijver
2008-10-15 13:37   ` [PATCH 2/6] Move existing TWL4030 code to drivers/mfd Peter 'p2' De Schrijver
2008-10-15 13:37     ` [PATCH 3/6] Hook twl4030 power code into twl4030 core Peter 'p2' De Schrijver
2008-10-15 13:37       ` [PATCH 4/6] 3430sdp and ldp use custom twl4030 power scripts Peter 'p2' De Schrijver
2008-10-15 13:37         ` [PATCH 5/6] Generic twl4030 power script for 3430 based boards Peter 'p2' De Schrijver
2008-10-15 13:37           ` [PATCH 6/6] omap3 evm, beagle and overo use the generic twl4030 script Peter 'p2' De Schrijver
2008-10-16 23:09           ` [PATCH 5/6] Generic twl4030 power script for 3430 based boards David Brownell
2008-10-17  9:10             ` Peter 'p2' De Schrijver
2008-10-17  0:18       ` [PATCH 3/6] Hook twl4030 power code into twl4030 core David Brownell
  -- strict thread matches above, loose matches on Subject: below --
2008-10-20  8:37 [PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd Peter 'p2' De Schrijver
2008-10-20  8:37 ` [PATCH 1/6] Add defines and data types for twl4030 Peter 'p2' De Schrijver
2008-10-20  8:37   ` [PATCH 2/6] Move existing TWL4030 code to drivers/mfd Peter 'p2' De Schrijver
2008-10-20  8:37     ` [PATCH 3/6] Hook twl4030 power code into twl4030 core Peter 'p2' De Schrijver
2008-10-20  8:37       ` [PATCH 4/6] 3430sdp and ldp use custom twl4030 power scripts Peter 'p2' De Schrijver
2008-10-20  8:37         ` [PATCH 5/6] Generic twl4030 power script for 3430 based boards Peter 'p2' De Schrijver
2008-10-31 19:50           ` Grazvydas Ignotas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox