All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] Assorted small patches for regulators
@ 2010-02-24  7:37 Dmitry Torokhov
  2010-02-24  7:37 ` [PATCH 01/14] Regulators: virtual - use sysfs attribute groups Dmitry Torokhov
                   ` (14 more replies)
  0 siblings, 15 replies; 51+ messages in thread
From: Dmitry Torokhov @ 2010-02-24  7:37 UTC (permalink / raw)
  To: Liam Girdwood; +Cc: Mark Brown, linux-kernel

Hi Liam,

I happend to peek into drivers/regulator and saw a bunch of small issues, so
here goes. The patches are against linux-next, compile-tested only since I
don't have the hardware,

Please consider applying.

Thanks,

Dmitry

---

Dmitry Torokhov (14):
      Regulators: max8925-regulator - clean up driver data after removal
      Regulators: wm8400 - cleanup platform driver data handling
      Regulators: wm8994 - clean up driver data after removal
      Regulators: wm831x-xxx - clean up driver data after removal
      Regulators: pcap-regulator - clean up driver data after removal
      Regulators: max8660 - annotate probe and remove methods
      Regulators: max1586 - annotate probe and remove methods
      Regulators: lp3971 - fail if platform data was not supplied
      Regulators: tps6507x-regulator - mark probe method as __devinit
      Regulators: tps65023-regulator - mark probe method as __devinit
      Regulators: twl-regulator - mark probe function as __devinit
      Regulators: fixed - annotate probe and remove methods
      Regulators: ab3100 - fix probe and remove annotations
      Regulators: virtual - use sysfs attribute groups


 drivers/regulator/ab3100.c             |    6 ++-
 drivers/regulator/fixed.c              |   19 +++++-----
 drivers/regulator/lp3971.c             |   58 +++++++++++++++--------------
 drivers/regulator/max1586.c            |    9 +++--
 drivers/regulator/max8660.c            |   11 +++---
 drivers/regulator/max8925-regulator.c  |    6 ++-
 drivers/regulator/pcap-regulator.c     |    8 +++-
 drivers/regulator/tps65023-regulator.c |   35 ++++++++----------
 drivers/regulator/tps6507x-regulator.c |   34 ++++++++---------
 drivers/regulator/twl-regulator.c      |    2 +
 drivers/regulator/virtual.c            |   64 +++++++++++++++++---------------
 drivers/regulator/wm831x-dcdc.c        |   12 ++++++
 drivers/regulator/wm831x-isink.c       |    3 ++
 drivers/regulator/wm831x-ldo.c         |    5 +++
 drivers/regulator/wm8400-regulator.c   |   13 ++++---
 drivers/regulator/wm8994-regulator.c   |   11 ++++--
 include/linux/mfd/wm8400.h             |    4 ++
 17 files changed, 164 insertions(+), 136 deletions(-)

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

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

Thread overview: 51+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-24  7:37 [PATCH 00/14] Assorted small patches for regulators Dmitry Torokhov
2010-02-24  7:37 ` [PATCH 01/14] Regulators: virtual - use sysfs attribute groups Dmitry Torokhov
2010-02-24 10:50   ` Mark Brown
2010-02-25 10:35   ` Liam Girdwood
2010-02-24  7:37 ` [PATCH 02/14] Regulators: ab3100 - fix probe and remove annotations Dmitry Torokhov
2010-02-24 10:03   ` Mark Brown
2010-02-25 10:36   ` Liam Girdwood
2010-02-24  7:37 ` [PATCH 03/14] Regulators: fixed - annotate probe and remove methods Dmitry Torokhov
2010-02-24 10:43   ` Mark Brown
2010-02-25 10:36   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 04/14] Regulators: twl-regulator - mark probe function as __devinit Dmitry Torokhov
2010-02-24 10:05   ` Mark Brown
2010-02-25 10:36   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 05/14] Regulators: tps65023-regulator - mark probe method " Dmitry Torokhov
2010-02-24 11:31   ` Mark Brown
2010-02-25 10:37   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 06/14] Regulators: tps6507x-regulator " Dmitry Torokhov
2010-02-24 11:32   ` Mark Brown
2010-02-25 10:37   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 07/14] Regulators: lp3971 - fail if platform data was not supplied Dmitry Torokhov
2010-02-24 12:11   ` Mark Brown
2010-02-25 10:37   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 08/14] Regulators: max1586 - annotate probe and remove methods Dmitry Torokhov
2010-02-24 10:06   ` Mark Brown
2010-02-24 10:16     ` Dmitry Torokhov
2010-02-25 10:37   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 09/14] Regulators: max8660 " Dmitry Torokhov
2010-02-24 10:07   ` Mark Brown
2010-02-25 10:37   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 10/14] Regulators: pcap-regulator - clean up driver data after removal Dmitry Torokhov
2010-02-24 10:36   ` Mark Brown
2010-02-25 10:38   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 11/14] Regulators: wm831x-xxx " Dmitry Torokhov
2010-02-24 10:36   ` Mark Brown
2010-02-25 10:38   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 12/14] Regulators: wm8994 " Dmitry Torokhov
2010-02-24 10:20   ` Mark Brown
2010-02-25 10:39   ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 13/14] Regulators: wm8400 - cleanup platform driver data handling Dmitry Torokhov
2010-02-24 10:25   ` Mark Brown
2010-02-24 19:02     ` Dmitry Torokhov
2010-02-24 19:14       ` Mark Brown
2010-02-24 19:21         ` Dmitry Torokhov
2010-02-24 20:40           ` Mark Brown
2010-02-25  9:55             ` Dmitry Torokhov
2010-02-25 10:43               ` Mark Brown
2010-02-25 11:02               ` Liam Girdwood
2010-02-24  7:38 ` [PATCH 14/14] Regulators: max8925-regulator - clean up driver data after removal Dmitry Torokhov
2010-02-24 10:28   ` Mark Brown
2010-02-25 10:39   ` Liam Girdwood
2010-02-24 10:03 ` [PATCH 00/14] Assorted small patches for regulators Mark Brown

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.