All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] leds: convert all kzalloc() to devm_kzalloc()
@ 2012-07-04  5:09 Bryan Wu
  2012-07-04  5:09 ` [PATCH 01/25] leds: convert Big Networks LED driver " Bryan Wu
                   ` (24 more replies)
  0 siblings, 25 replies; 38+ messages in thread
From: Bryan Wu @ 2012-07-04  5:09 UTC (permalink / raw)
  To: linux-leds, rpurdie, linux-kernel

This convertion will simply the error handling in drivers.

Bryan Wu (25):
  leds: convert Big Networks LED driver to devm_kzalloc()
  leds: convert HTC ASIC3 LED driver to devm_kzalloc() and cleanup
    error exit path
  leds: convert Atmel PWM LED driver to devm_kzalloc()
  leds: convert LP3944 LED driver to devm_kzalloc()
  leds: convert DA9030/DA9034 LED driver to devm_kzalloc() and cleanup
    error exit path
  leds: convert LP5521 LED driver to devm_kzalloc() and cleanup error
    exit path
  leds: convert BD2802 RGB LED driver to devm_kzalloc() and cleanup
    error exit path
  leds: convert PCA9633 LED driver to devm_kzalloc()
  leds: convert LP5523 LED driver to devm_kzalloc() and cleanup error
    exit path
  leds: convert Renesas TPU LED driver to devm_kzalloc() and cleanup
    error exit path
  leds: convert LT3593 LED driver to devm_kzalloc()
  leds: convert PCA9532 LED driver to devm_kzalloc()
  leds: convert Sun Fire LED driver to devm_kzalloc() and cleanup error
    exit path
  leds: convert PCA955x LED driver to devm_kzalloc() and cleanup error
    exit path
  leds: convert ADP5520 LED driver to devm_kzalloc() and cleanup error
    exit path
  leds: convert Freescale MC13783 LED driver to devm_kzalloc() and
    cleanup error exit path
  leds: convert TCA6507 LED driver to devm_kzalloc()
  leds: convert LM3530 LED driver to devm_kzalloc() and cleanup error
    exit path
  leds: convert DAC124S085 LED driver to devm_kzalloc()
  leds: convert Network Space v2 LED driver to devm_kzalloc() and
    cleanup error exit path
  leds: convert transient LED trigger driver to devm_kzalloc()
  leds: convert GPIO LED trigger driver to devm_kzalloc() and cleanup
    error exit path
  leds: convert Backlight emulation LED trigger driver to
    devm_kzalloc() and cleanup error exit path
  leds: convert Heartbeat LED trigger driver to devm_kzalloc()
  leds: convert One-shot LED trigger driver to devm_kzalloc() and
    cleanup error exit path

 drivers/leds/leds-adp5520.c      |    8 +++-----
 drivers/leds/leds-asic3.c        |   16 ++++++----------
 drivers/leds/leds-atmel-pwm.c    |    5 ++---
 drivers/leds/leds-bd2802.c       |    8 ++------
 drivers/leds/leds-da903x.c       |    9 ++-------
 drivers/leds/leds-dac124s085.c   |    4 +---
 drivers/leds/leds-lm3530.c       |   24 ++++++++----------------
 drivers/leds/leds-lp3944.c       |    9 +++------
 drivers/leds/leds-lp5521.c       |   18 +++++++-----------
 drivers/leds/leds-lp5523.c       |   24 ++++++++++--------------
 drivers/leds/leds-lt3593.c       |    9 +++------
 drivers/leds/leds-mc13783.c      |    8 +++-----
 drivers/leds/leds-netxbig.c      |   10 +++-------
 drivers/leds/leds-ns2.c          |   19 ++++++-------------
 drivers/leds/leds-pca9532.c      |   10 ++--------
 drivers/leds/leds-pca955x.c      |   18 +++++-------------
 drivers/leds/leds-pca9633.c      |    6 +-----
 drivers/leds/leds-renesas-tpu.c  |   23 +++++++++--------------
 drivers/leds/leds-sunfire.c      |   21 ++++++---------------
 drivers/leds/leds-tca6507.c      |    4 +---
 drivers/leds/ledtrig-backlight.c |   10 +++-------
 drivers/leds/ledtrig-gpio.c      |    8 ++------
 drivers/leds/ledtrig-heartbeat.c |    4 ++--
 drivers/leds/ledtrig-oneshot.c   |    8 +++-----
 drivers/leds/ledtrig-transient.c |    5 ++---
 25 files changed, 95 insertions(+), 193 deletions(-)

-- 
1.7.10.4


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

end of thread, other threads:[~2012-07-06  4:02 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-04  5:09 [PATCH 00/25] leds: convert all kzalloc() to devm_kzalloc() Bryan Wu
2012-07-04  5:09 ` [PATCH 01/25] leds: convert Big Networks LED driver " Bryan Wu
2012-07-04  5:09 ` [PATCH 02/25] leds: convert HTC ASIC3 LED driver to devm_kzalloc() and cleanup error exit path Bryan Wu
2012-07-04  5:09 ` [PATCH 03/25] leds: convert Atmel PWM LED driver to devm_kzalloc() Bryan Wu
2012-07-04  5:09 ` [PATCH 04/25] leds: convert LP3944 " Bryan Wu
2012-07-04  7:34   ` Bryan Wu
2012-07-04  5:09 ` [PATCH 05/25] leds: convert DA9030/DA9034 LED driver to devm_kzalloc() and cleanup error exit path Bryan Wu
2012-07-04  5:09 ` [PATCH 06/25] leds: convert LP5521 " Bryan Wu
2012-07-04  7:35   ` Bryan Wu
2012-07-04  5:09 ` [PATCH 07/25] leds: convert BD2802 RGB " Bryan Wu
2012-07-04  5:10 ` [PATCH 08/25] leds: convert PCA9633 LED driver to devm_kzalloc() Bryan Wu
2012-07-04  5:10 ` [PATCH 09/25] leds: convert LP5523 LED driver to devm_kzalloc() and cleanup error exit path Bryan Wu
2012-07-04  5:10 ` [PATCH 10/25] leds: convert Renesas TPU " Bryan Wu
2012-07-04  5:10 ` [PATCH 11/25] leds: convert LT3593 LED driver to devm_kzalloc() Bryan Wu
2012-07-04  5:10 ` [PATCH 12/25] leds: convert PCA9532 " Bryan Wu
2012-07-04  5:10 ` [PATCH 13/25] leds: convert Sun Fire LED driver to devm_kzalloc() and cleanup error exit path Bryan Wu
2012-07-04  5:10 ` [PATCH 14/25] leds: convert PCA955x " Bryan Wu
2012-07-04  5:10 ` [PATCH 15/25] leds: convert ADP5520 " Bryan Wu
2012-07-04  7:40   ` Bryan Wu
2012-07-04  5:10 ` [PATCH 16/25] leds: convert Freescale MC13783 " Bryan Wu
2012-07-04  5:10 ` [PATCH 17/25] leds: convert TCA6507 LED driver to devm_kzalloc() Bryan Wu
2012-07-04  5:10 ` [PATCH 18/25] leds: convert LM3530 LED driver to devm_kzalloc() and cleanup error exit path Bryan Wu
2012-07-05  0:01   ` Linus Walleij
2012-07-04  5:10 ` [PATCH 19/25] leds: convert DAC124S085 LED driver to devm_kzalloc() Bryan Wu
2012-07-04  5:10 ` [PATCH 20/25] leds: convert Network Space v2 LED driver to devm_kzalloc() and cleanup error exit path Bryan Wu
2012-07-04  5:10 ` [PATCH 21/25] leds: convert transient LED trigger driver to devm_kzalloc() Bryan Wu
2012-07-05 16:42   ` Shuah Khan
2012-07-04  5:10 ` [PATCH 22/25] leds: convert GPIO LED trigger driver to devm_kzalloc() and cleanup error exit path Bryan Wu
2012-07-05 16:45   ` Shuah Khan
2012-07-04  5:10 ` [PATCH 23/25] leds: convert Backlight emulation " Bryan Wu
2012-07-05 16:46   ` Shuah Khan
2012-07-04  5:10 ` [PATCH 24/25] leds: convert Heartbeat LED trigger driver to devm_kzalloc() Bryan Wu
2012-07-05 16:46   ` Shuah Khan
2012-07-04  5:10 ` [PATCH 25/25] leds: convert One-shot LED trigger driver to devm_kzalloc() and cleanup error exit path Bryan Wu
2012-07-05 16:47   ` Shuah Khan
2012-07-05 19:48     ` Fabio Baltieri
2012-07-05 20:35       ` Shuah Khan
2012-07-06  4:02         ` Bryan Wu

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.