diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-04-23 18:40:29 +0900 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2014-04-28 13:37:48 +0200 |
commit | 6c5059ccce2b66c9ca73f9c826b8e26d883fcf32 (patch) | |
tree | 8888b8506cc6c238a74e9c3a5a0885172dbdf302 /drivers/pwm | |
parent | d93fc78f47f93a25a9f99fea613616901331d213 (diff) |
pwm: renesas-tpu: Remove unnecessary OOM messages
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>
Diffstat (limited to 'drivers/pwm')
-rw-r--r-- | drivers/pwm/pwm-renesas-tpu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/pwm/pwm-renesas-tpu.c b/drivers/pwm/pwm-renesas-tpu.c index aff6ba9b49e7..cc13ff4cfab0 100644 --- a/drivers/pwm/pwm-renesas-tpu.c +++ b/drivers/pwm/pwm-renesas-tpu.c @@ -405,10 +405,8 @@ static int tpu_probe(struct platform_device *pdev) int ret; tpu = devm_kzalloc(&pdev->dev, sizeof(*tpu), GFP_KERNEL); - if (tpu == NULL) { - dev_err(&pdev->dev, "failed to allocate driver data\n"); + if (tpu == NULL) return -ENOMEM; - } spin_lock_init(&tpu->lock); tpu->pdev = pdev; |