projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a824c73
)
drivers/video/backlight/atmel-pwm-bl.c: use devm_ functions
author
Jingoo Han
<
[email protected]
>
Mon, 30 Jul 2012 21:40:31 +0000
(14:40 -0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 31 Jul 2012 00:25:14 +0000
(17:25 -0700)
The devm_ functions allocate memory that is released when a driver
detaches. This patch uses devm_kzalloc of these functions.
Signed-off-by: Jingoo Han <
[email protected]
>
Acked-by: Hans-Christian Egtvedt <
[email protected]
>
Cc: Richard Purdie <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/video/backlight/atmel-pwm-bl.c
patch
|
blob
|
history
diff --git
a/drivers/video/backlight/atmel-pwm-bl.c
b/drivers/video/backlight/atmel-pwm-bl.c
index 0443a4f718580c4381acf7d5cb538e941b7e2aa5..cd64073d3f534e3341405f4083c17dc109fd7430 100644
(file)
--- a/
drivers/video/backlight/atmel-pwm-bl.c
+++ b/
drivers/video/backlight/atmel-pwm-bl.c
@@
-127,7
+127,8
@@
static int atmel_pwm_bl_probe(struct platform_device *pdev)
struct atmel_pwm_bl *pwmbl;
int retval;
- pwmbl = kzalloc(sizeof(struct atmel_pwm_bl), GFP_KERNEL);
+ pwmbl = devm_kzalloc(&pdev->dev, sizeof(struct atmel_pwm_bl),
+ GFP_KERNEL);
if (!pwmbl)
return -ENOMEM;
@@
-202,7
+203,6
@@
err_free_gpio:
err_free_pwm:
pwm_channel_free(&pwmbl->pwmc);
err_free_mem:
- kfree(pwmbl);
return retval;
}
@@
-218,7
+218,6
@@
static int __exit atmel_pwm_bl_remove(struct platform_device *pdev)
pwm_channel_free(&pwmbl->pwmc);
backlight_device_unregister(pwmbl->bldev);
platform_set_drvdata(pdev, NULL);
- kfree(pwmbl);
return 0;
}