projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c10d506
)
pwm: tiehrpwm: Remove unnecessary OOM messages
author
Jingoo Han
<jg1.han@samsung.com>
Wed, 23 Apr 2014 09:41:48 +0000
(18:41 +0900)
committer
Thierry Reding
<thierry.reding@gmail.com>
Mon, 28 Apr 2014 11:37:48 +0000
(13:37 +0200)
The site-specific OOM messages are unnecessary, because they
duplicate the MM subsystem generic OOM message.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
drivers/pwm/pwm-tiehrpwm.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/pwm/pwm-tiehrpwm.c
b/drivers/pwm/pwm-tiehrpwm.c
index aee4471424d14a98da494f877909ae5e9f804990..3a31c08cc6c854f0420c292c36e5a36096fc6f0f 100644
(file)
--- a/
drivers/pwm/pwm-tiehrpwm.c
+++ b/
drivers/pwm/pwm-tiehrpwm.c
@@
-440,10
+440,8
@@
static int ehrpwm_pwm_probe(struct platform_device *pdev)
u16 status;
pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
- if (!pc) {
- dev_err(&pdev->dev, "failed to allocate memory\n");
+ if (!pc)
return -ENOMEM;
- }
clk = devm_clk_get(&pdev->dev, "fck");
if (IS_ERR(clk)) {