aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/ath79/dev-leds-gpio.c
diff options
context:
space:
mode:
authorThomas Meyer <thomas@m3y3r.de>2012-03-14 05:28:36 -0400
committerRalf Baechle <ralf@linux-mips.org>2012-05-15 11:49:00 -0400
commit97bf7a190082457f84467b28baed14c8147476f2 (patch)
tree0b825f7a9d29b1bdcdc1a64ebd02ca945f1147d5 /arch/mips/ath79/dev-leds-gpio.c
parent36be50515fe2aef61533b516fa2576a2c7fe7664 (diff)
MIPS: ath79: Use kmemdup rather than duplicating its implementation
The semantic patch that makes this change is available in scripts/coccinelle/api/memdup.cocci. Signed-off-by: Thomas Meyer <thomas@m3y3r.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/3483/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/ath79/dev-leds-gpio.c')
-rw-r--r--arch/mips/ath79/dev-leds-gpio.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/mips/ath79/dev-leds-gpio.c b/arch/mips/ath79/dev-leds-gpio.c
index cdade68dcd17..dcb1debcefb8 100644
--- a/arch/mips/ath79/dev-leds-gpio.c
+++ b/arch/mips/ath79/dev-leds-gpio.c
@@ -24,12 +24,10 @@ void __init ath79_register_leds_gpio(int id,
24 struct gpio_led *p; 24 struct gpio_led *p;
25 int err; 25 int err;
26 26
27 p = kmalloc(num_leds * sizeof(*p), GFP_KERNEL); 27 p = kmemdup(leds, num_leds * sizeof(*p), GFP_KERNEL);
28 if (!p) 28 if (!p)
29 return; 29 return;
30 30
31 memcpy(p, leds, num_leds * sizeof(*p));
32
33 pdev = platform_device_alloc("leds-gpio", id); 31 pdev = platform_device_alloc("leds-gpio", id);
34 if (!pdev) 32 if (!pdev)
35 goto err_free_leds; 33 goto err_free_leds;