All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Driver Probe Deferral Mechanism
@ 2011-10-07  5:33 G, Manjunath Kondaiah
  2011-10-07  5:33 ` [PATCH 1/5] drivercore: add new error value for deferred probe G, Manjunath Kondaiah
                   ` (5 more replies)
  0 siblings, 6 replies; 116+ messages in thread
From: G, Manjunath Kondaiah @ 2011-10-07  5:33 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: linux-omap, linux-mmc, linux-kernel, Grant Likely,
	Greg Kroah-Hartman, Dilan Lee, Mark Brown, Manjunath GKondaiah,
	Arnd Bergmann


Original patch posted at:
http://comments.gmane.org/gmane.linux.kernel/1194346

Enhancements done to above patch:
 - checkpatch warning fixes
 - added Kconfig symbol CONFIG_PROBE_DEFER
 - replacing normal workqueue with singlethread_workqueue
 - handling -EPROBE_DEFER error

Apart from that, OMAP HSMMC and GPIO drivers are adopted to use
deferral probe mechanism and successfully tested on omap3 beagle
board.

Applies cleanly on top of v3.1-rc8

G, Manjunath Kondaiah (3):
  drivercore: add new error value for deferred probe
  gpiolib: handle deferral probe error
  omap: hsmmc: use platform_driver_register

Grant Likely (1):
  drivercore: Add driver probe deferral mechanism

Mark Brown (1):
  regulator: Support driver probe deferral

 drivers/base/Kconfig          |   11 +++
 drivers/base/base.h           |    3 +
 drivers/base/core.c           |    6 ++
 drivers/base/dd.c             |  145 +++++++++++++++++++++++++++++++++++++++++
 drivers/gpio/gpiolib.c        |    6 +-
 drivers/mmc/host/omap_hsmmc.c |    7 +-
 drivers/regulator/core.c      |    4 +-
 include/linux/device.h        |    7 ++
 include/linux/errno.h         |    1 +
 9 files changed, 183 insertions(+), 7 deletions(-)

-- 
Cc: linux-omap@vger.kernel.org
Cc: linux-mmc@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Greg Kroah-Hartman <greg@kroah.com>
Cc: Dilan Lee <dilee@nvidia.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Manjunath GKondaiah <manjunath.gkondaiah@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>

1.7.4.1


^ permalink raw reply	[flat|nested] 116+ messages in thread
* [PATCH 0/5] Driver Probe Deferral Mechanism
@ 2011-10-07  5:05 G, Manjunath Kondaiah
  2011-10-07  5:05 ` [PATCH 2/5] drivercore: Add driver probe deferral mechanism G, Manjunath Kondaiah
  0 siblings, 1 reply; 116+ messages in thread
From: G, Manjunath Kondaiah @ 2011-10-07  5:05 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: linux-omap, linux-mmc, linux-kernel, Grant Likely,
	Greg Kroah-Hartman, Dilan Lee, Mark Brown, Manjunath GKondaiah,
	Arnd Bergmann


Original patch posted at:
http://comments.gmane.org/gmane.linux.kernel/1194346

Enhancements done to above patch:
 - checkpatch warning fixes
 - added Kconfig symbol CONFIG_PROBE_DEFER
 - replacing normal workqueue with singlethread_workqueue
 - handling -EPROBE_DEFER error

Apart from that, OMAP HSMMC and GPIO drivers are adopted to use
deferral probe mechanism and successfully tested on omap3 beagle
board.

Applies cleanly on top of v3.1-rc8

G, Manjunath Kondaiah (3):
  drivercore: add new error value for deferred probe
  gpiolib: handle deferral probe error
  omap: hsmmc: use platform_driver_register

Grant Likely (1):
  drivercore: Add driver probe deferral mechanism

Mark Brown (1):
  regulator: Support driver probe deferral

 drivers/base/Kconfig          |   11 +++
 drivers/base/base.h           |    3 +
 drivers/base/core.c           |    6 ++
 drivers/base/dd.c             |  145 +++++++++++++++++++++++++++++++++++++++++
 drivers/gpio/gpiolib.c        |    6 +-
 drivers/mmc/host/omap_hsmmc.c |    7 +-
 drivers/regulator/core.c      |    4 +-
 include/linux/device.h        |    7 ++
 include/linux/errno.h         |    1 +
 9 files changed, 183 insertions(+), 7 deletions(-)

-- 
Cc: linux-omap@vger.kernel.org
Cc: linux-mmc@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Greg Kroah-Hartman <greg@kroah.com>
Cc: Dilan Lee <dilee@nvidia.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Manjunath GKondaiah <manjunath.gkondaiah@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>

1.7.4.1


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

end of thread, other threads:[~2011-10-14 19:09 UTC | newest]

Thread overview: 116+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-07  5:33 [PATCH 0/5] Driver Probe Deferral Mechanism G, Manjunath Kondaiah
2011-10-07  5:33 ` [PATCH 1/5] drivercore: add new error value for deferred probe G, Manjunath Kondaiah
2011-10-07  6:43   ` Greg KH
2011-10-07  6:43     ` Greg KH
2011-10-07 10:00     ` Mark Brown
2011-10-07 10:00       ` Mark Brown
2011-10-07 22:12     ` Grant Likely
2011-10-07 22:12       ` Grant Likely
2011-10-07 23:28       ` Valdis.Kletnieks
2011-10-07 23:28         ` Valdis.Kletnieks
2011-10-07 23:28         ` Valdis.Kletnieks at vt.edu
2011-10-08  0:12         ` Greg KH
2011-10-08  0:12           ` Greg KH
2011-10-09 22:59           ` Grant Likely
2011-10-09 22:59             ` Grant Likely
2011-10-09 22:59             ` Grant Likely
2011-10-10  1:06             ` Greg KH
2011-10-10  1:06               ` Greg KH
2011-10-10  1:06               ` Greg KH
2011-10-12  6:18               ` G, Manjunath Kondaiah
2011-10-12  6:18                 ` G, Manjunath Kondaiah
2011-10-13  4:10                 ` Grant Likely
2011-10-13  4:10                   ` Grant Likely
2011-10-07  5:33 ` [PATCH 2/5] drivercore: Add driver probe deferral mechanism G, Manjunath Kondaiah
2011-10-07  6:49   ` Greg KH
2011-10-07  6:49     ` Greg KH
2011-10-07 20:57     ` Josh Triplett
2011-10-07 20:57       ` Josh Triplett
2011-10-07 21:23       ` Greg KH
2011-10-07 21:23         ` Greg KH
2011-10-08  4:03         ` Josh Triplett
2011-10-08  4:03           ` Josh Triplett
2011-10-08 15:55           ` Greg KH
2011-10-08 15:55             ` Greg KH
2011-10-08 18:18             ` Josh Triplett
2011-10-08 18:18               ` Josh Triplett
2011-10-10 17:37             ` Andrei Warkentin
2011-10-10 17:37               ` Andrei Warkentin
2011-10-11 12:29               ` Ming Lei
2011-10-11 12:29                 ` Ming Lei
2011-10-13  4:09                 ` Grant Likely
2011-10-13  4:09                   ` Grant Likely
2011-10-13 14:18                   ` Ming Lei
2011-10-13 14:18                     ` Ming Lei
2011-10-13 14:31                     ` Alan Stern
2011-10-13 14:31                       ` Alan Stern
2011-10-13 14:31                       ` Alan Stern
2011-10-13 15:21                       ` Ming Lei
2011-10-13 15:21                         ` Ming Lei
2011-10-13 16:04                         ` Alan Stern
2011-10-13 16:04                           ` Alan Stern
2011-10-13 16:04                           ` Alan Stern
2011-10-14  0:13                           ` Ming Lei
2011-10-14  0:13                             ` Ming Lei
2011-10-13 17:15                       ` Grant Likely
2011-10-13 17:15                         ` Grant Likely
2011-10-13 18:16                         ` Alan Stern
2011-10-13 18:16                           ` Alan Stern
2011-10-13 18:16                           ` Alan Stern
2011-10-13 18:28                           ` Grant Likely
2011-10-13 18:28                             ` Grant Likely
2011-10-14 15:39                             ` Alan Stern
2011-10-14 15:39                               ` Alan Stern
2011-10-14 15:39                               ` Alan Stern
2011-10-14 16:17                               ` Grant Likely
2011-10-14 16:17                                 ` Grant Likely
2011-10-14 16:33                                 ` Alan Stern
2011-10-14 16:33                                   ` Alan Stern
2011-10-14 16:33                                   ` Alan Stern
2011-10-14 17:20                                   ` Grant Likely
2011-10-14 17:20                                     ` Grant Likely
2011-10-14 17:33                                     ` Alan Stern
2011-10-14 17:33                                       ` Alan Stern
2011-10-14 17:33                                       ` Alan Stern
2011-10-14 18:25                                       ` Grant Likely
2011-10-14 18:25                                         ` Grant Likely
2011-10-14 18:39                                         ` Alan Stern
2011-10-14 18:39                                           ` Alan Stern
2011-10-14 18:39                                           ` Alan Stern
2011-10-14 19:07                                           ` Grant Likely
2011-10-14 19:07                                             ` Grant Likely
2011-10-14 18:56                                     ` David Daney
2011-10-14 18:56                                       ` David Daney
2011-10-14 19:03                                       ` Grant Likely
2011-10-14 19:03                                         ` Grant Likely
2011-10-14 19:03                                         ` Grant Likely
2011-10-14 19:09                                         ` David Daney
2011-10-14 19:09                                           ` David Daney
2011-10-14 15:37                         ` Alan Stern
2011-10-14 15:37                           ` Alan Stern
2011-10-14 15:37                           ` Alan Stern
2011-10-12  7:04               ` G, Manjunath Kondaiah
2011-10-12  7:04                 ` G, Manjunath Kondaiah
2011-10-07 21:28     ` Grant Likely
2011-10-07 21:28       ` Grant Likely
2011-10-07 21:28       ` Grant Likely
2011-10-07  5:33 ` [PATCH 3/5] regulator: Support driver probe deferral G, Manjunath Kondaiah
2011-10-07  5:33 ` [PATCH 4/5] gpiolib: handle deferral probe error G, Manjunath Kondaiah
2011-10-07 10:06   ` Alan Cox
2011-10-07 10:06     ` Alan Cox
2011-10-07 10:06     ` Alan Cox
2011-10-07 22:09     ` Grant Likely
2011-10-07 22:09       ` Grant Likely
2011-10-12  6:14       ` G, Manjunath Kondaiah
2011-10-12  6:14         ` G, Manjunath Kondaiah
2011-10-12  6:14         ` G, Manjunath Kondaiah
2011-10-13  4:12         ` Grant Likely
2011-10-13  4:12           ` Grant Likely
2011-10-07  5:33 ` [PATCH 5/5] omap: hsmmc: use platform_driver_register G, Manjunath Kondaiah
2011-10-07  6:50 ` [PATCH 0/5] Driver Probe Deferral Mechanism Greg KH
2011-10-07  6:50   ` Greg KH
2011-10-07  6:50   ` Greg KH
2011-10-07  7:37   ` G, Manjunath Kondaiah
2011-10-07  7:37     ` G, Manjunath Kondaiah
2011-10-07  7:37     ` G, Manjunath Kondaiah
  -- strict thread matches above, loose matches on Subject: below --
2011-10-07  5:05 G, Manjunath Kondaiah
2011-10-07  5:05 ` [PATCH 2/5] drivercore: Add driver probe deferral mechanism G, Manjunath Kondaiah

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.