diff options
| author | Markus Elfring <[email protected]> | 2017-12-15 17:55:11 +0000 |
|---|---|---|
| committer | Thierry Reding <[email protected]> | 2018-03-27 21:28:53 +0000 |
| commit | 708aa931bd09459bd3c1bcbcbf1e335087b0c951 (patch) | |
| tree | 3f556a77c985466d05582a7be4516f455042cf60 /drivers/pwm/pwm-atmel-tcb.c | |
| parent | pwm: puv3: Delete an error message for a failed memory allocation (diff) | |
| download | kernel-708aa931bd09459bd3c1bcbcbf1e335087b0c951.tar.gz kernel-708aa931bd09459bd3c1bcbcbf1e335087b0c951.zip | |
pwm: atmel-tcb: Delete an error message for a failed memory allocation
Omit an extra message for a memory allocation failure in this function.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <[email protected]>
Signed-off-by: Thierry Reding <[email protected]>
Diffstat (limited to 'drivers/pwm/pwm-atmel-tcb.c')
| -rw-r--r-- | drivers/pwm/pwm-atmel-tcb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-atmel-tcb.c b/drivers/pwm/pwm-atmel-tcb.c index acd3ce8ecf3f..4fb1be246c44 100644 --- a/drivers/pwm/pwm-atmel-tcb.c +++ b/drivers/pwm/pwm-atmel-tcb.c @@ -401,7 +401,6 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev) tcbpwm = devm_kzalloc(&pdev->dev, sizeof(*tcbpwm), GFP_KERNEL); if (tcbpwm == NULL) { err = -ENOMEM; - dev_err(&pdev->dev, "failed to allocate memory\n"); goto err_free_tc; } |
