public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] twl4030 patches (v5)
@ 2008-09-30 18:42 Felipe Balbi
  2008-09-30 18:42 ` [PATCH 01/25] twl4030: fix potential null pointer dereference Felipe Balbi
                   ` (2 more replies)
  0 siblings, 3 replies; 37+ messages in thread
From: Felipe Balbi @ 2008-09-30 18:42 UTC (permalink / raw)
  To: linux-omap; +Cc: Tony Lindgren, David Brownell, Felipe Balbi

From: Felipe Balbi <felipe.balbi@nokia.com>

Hopefully this is the final version:

In this version a bugfix to the use of
twl4030_set_gpio_edge_ctrl() and includes Dave's
pullup/pulldown patches.

David Brownell (13):
  twl4030 gpio platform data
  twl4030 uses gpiolib
  minor twl4030-core cleanups
  provide detailed diagnostics in add_children()
  move twl4030-gpio to drivers/gpio
  minor irq-related cleanups
  Move I2C driver model init earlier in the boot sequence
  twl4030-gpio irq_chip.set_type
  twl4030-gpio: remove legacy irq triggering calls and user
  twl4030-gpio: irq and other cleanup
  twl4030-core: portability updates
  twl4030-gpio: pullup/pulldown init
  twl4030-gpio: beagle pull up/down init

Felipe Balbi (11):
  twl4030: fix potential null pointer dereference
  i2c: clean add_children a bit
  i2c: move twl4030_keypad to new style registration
  i2c: move twl4030-usb to platform_device
  i2c: twl4030-usb: add 'vbus' sysfs file
  i2c: move twl4030-madc to new registration style
  i2c: added a few missing gotos to add_children()
  i2c: switch twl4030-usb to use a resource for irq
  i2c: minor cleanups to twl4030-pwrbutton.c
  twl4030: minor cleanups to twl4030_bci_battery.c
  twl4030-bci: move to new style registration method

Jagadeesh Bhaskar Pakaravoor (1):
  twl4030-gpio: Remove default pullup enable/disable of GPIO

 arch/arm/mach-omap2/Makefile                |    4 +-
 arch/arm/mach-omap2/bci.c                   |   57 ---
 arch/arm/mach-omap2/board-2430sdp.c         |   32 ++-
 arch/arm/mach-omap2/board-3430sdp.c         |   49 ++-
 arch/arm/mach-omap2/board-ldp.c             |   37 ++-
 arch/arm/mach-omap2/board-omap2evm.c        |   33 ++-
 arch/arm/mach-omap2/board-omap3beagle.c     |   35 ++
 arch/arm/mach-omap2/board-omap3evm.c        |   85 +++--
 arch/arm/mach-omap2/board-overo.c           |   11 +
 arch/arm/mach-omap2/hsmmc.c                 |   11 -
 arch/arm/plat-omap/include/mach/bci.h       |   17 -
 arch/arm/plat-omap/include/mach/irqs.h      |    2 +-
 drivers/gpio/Kconfig                        |    7 +
 drivers/gpio/Makefile                       |    1 +
 drivers/{i2c/chips => gpio}/twl4030-gpio.c  |  489 ++++++++++++++++++---------
 drivers/i2c/chips/Kconfig                   |   20 --
 drivers/i2c/chips/Makefile                  |    1 -
 drivers/i2c/chips/twl4030-core.c            |  344 +++++++++++++++++---
 drivers/i2c/chips/twl4030-madc.c            |  243 +++++++++-----
 drivers/i2c/chips/twl4030-pwrbutton.c       |   10 +-
 drivers/i2c/chips/twl4030-usb.c             |  373 +++++++++++----------
 drivers/i2c/i2c-core.c                      |    2 +-
 drivers/input/keyboard/omap-twl4030keypad.c |   10 +-
 drivers/mmc/host/omap_hsmmc.c               |    4 +-
 drivers/power/twl4030_bci_battery.c         |  184 +++++------
 drivers/rtc/rtc-twl4030.c                   |   11 +-
 include/linux/i2c/twl4030.h                 |   69 +++-
 27 files changed, 1364 insertions(+), 777 deletions(-)
 delete mode 100644 arch/arm/mach-omap2/bci.c
 delete mode 100644 arch/arm/plat-omap/include/mach/bci.h
 rename drivers/{i2c/chips => gpio}/twl4030-gpio.c (64%)


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

end of thread, other threads:[~2008-10-01 10:40 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-30 18:42 [PATCH 00/25] twl4030 patches (v5) Felipe Balbi
2008-09-30 18:42 ` [PATCH 01/25] twl4030: fix potential null pointer dereference Felipe Balbi
2008-09-30 18:42   ` [PATCH 02/25] twl4030-gpio: Remove default pullup enable/disable of GPIO Felipe Balbi
2008-09-30 18:42     ` [PATCH 03/25] i2c: clean add_children a bit Felipe Balbi
2008-09-30 18:42       ` [PATCH 04/25] i2c: move twl4030_keypad to new style registration Felipe Balbi
2008-09-30 18:42         ` [PATCH 05/25] i2c: move twl4030-usb to platform_device Felipe Balbi
2008-09-30 18:42           ` [PATCH 06/25] i2c: twl4030-usb: add 'vbus' sysfs file Felipe Balbi
2008-09-30 18:42             ` [PATCH 07/25] twl4030 gpio platform data Felipe Balbi
2008-09-30 18:42               ` [PATCH 08/25] twl4030 uses gpiolib Felipe Balbi
2008-09-30 18:42                 ` [PATCH 09/25] i2c: move twl4030-madc to new registration style Felipe Balbi
2008-09-30 18:42                   ` [PATCH 10/25] minor twl4030-core cleanups Felipe Balbi
2008-09-30 18:42                     ` [PATCH 11/25] provide detailed diagnostics in add_children() Felipe Balbi
2008-09-30 18:42                       ` [PATCH 12/25] move twl4030-gpio to drivers/gpio Felipe Balbi
2008-09-30 18:42                         ` [PATCH 13/25] i2c: added a few missing gotos to add_children() Felipe Balbi
2008-09-30 18:42                           ` [PATCH 14/25] minor irq-related cleanups Felipe Balbi
2008-09-30 18:42                             ` [PATCH 15/25] i2c: switch twl4030-usb to use a resource for irq Felipe Balbi
2008-09-30 18:43                               ` [PATCH 16/25] Move I2C driver model init earlier in the boot sequence Felipe Balbi
2008-09-30 18:43                                 ` [PATCH 17/25] i2c: minor cleanups to twl4030-pwrbutton.c Felipe Balbi
2008-09-30 18:43                                   ` [PATCH 18/25] twl4030-gpio irq_chip.set_type Felipe Balbi
2008-09-30 18:43                                     ` [PATCH 19/25] twl4030-gpio: remove legacy irq triggering calls and user Felipe Balbi
2008-09-30 18:43                                       ` [PATCH 20/25] twl4030-gpio: irq and other cleanup Felipe Balbi
2008-09-30 18:43                                         ` [PATCH 21/25] twl4030-core: portability updates Felipe Balbi
2008-09-30 18:43                                           ` [PATCH 22/25] twl4030: minor cleanups to twl4030_bci_battery.c Felipe Balbi
2008-09-30 18:43                                             ` [PATCH 23/25] twl4030-bci: move to new style registration method Felipe Balbi
2008-09-30 18:43                                               ` [PATCH 24/25] twl4030-gpio: pullup/pulldown init Felipe Balbi
2008-09-30 18:43                                                 ` [PATCH 25/25] twl4030-gpio: beagle pull up/down init Felipe Balbi
2008-10-01  6:49                                               ` [PATCH 23/25] twl4030-bci: move to new style registration method Pakaravoor, Jagadeesh
2008-09-30 21:45                   ` [PATCH 09/25] i2c: move twl4030-madc to new registration style David Brownell
2008-09-30 22:28                     ` Felipe Balbi
2008-09-30 21:42         ` [PATCH 04/25] i2c: move twl4030_keypad to new style registration David Brownell
2008-09-30 22:30           ` Felipe Balbi
2008-09-30 19:41 ` [PATCH 00/25] twl4030 patches (v5) David Brownell
2008-09-30 23:30   ` Steve Sakoman
2008-10-01 10:42     ` Tony Lindgren
2008-09-30 19:49 ` [PATCH 26/25] twl4030 gpio cleanups David Brownell
2008-09-30 20:16   ` Felipe Balbi
2008-10-01 10:42     ` Tony Lindgren

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