Re: [PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd

2008-10-24 Thread Peter 'p2' De Schrijver
On Mon, Oct 20, 2008 at 02:02:16AM -0700, ext David Brownell wrote:
 On Monday 20 October 2008, Peter 'p2' De Schrijver wrote:
  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
 
 Seems OK to me ... any reason this shouldn't go to mainline?
 

I don't see any reason.

Cheers,

Peter.

-- 
goa is a state of mind
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd

2008-10-24 Thread Kevin Hilman
Peter 'p2' De Schrijver [EMAIL PROTECTED] writes:

 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

Tony,

This looks good to me.  Rather than pull this into pm-next, this
could go straight into linux-omap, and then Peter should submit to
mainline.

Kevin


--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd

2008-10-24 Thread Tony Lindgren
* Kevin Hilman [EMAIL PROTECTED] [081024 15:39]:
 Peter 'p2' De Schrijver [EMAIL PROTECTED] writes:
 
  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
 
 Tony,
 
 This looks good to me.  Rather than pull this into pm-next, this
 could go straight into linux-omap, and then Peter should submit to
 mainline.

OK, sounds good to me.

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


[PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd

2008-10-20 Thread 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

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd

2008-10-20 Thread David Brownell
On Monday 20 October 2008, Peter 'p2' De Schrijver wrote:
 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

Seems OK to me ... any reason this shouldn't go to mainline?

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 0/6] Integrate the twl4030 power code into new twl4030 mfd

2008-10-15 Thread 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

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html