summaryrefslogtreecommitdiffstats
path: root/drivers/extcon/extcon-max14577.c
diff options
context:
space:
mode:
authorJingoo Han2014-07-23 03:07:09 +0200
committerChanwoo Choi2014-07-23 03:07:09 +0200
commit0a16ee633a83374a2bedbd6a057ab7d7e50a1d50 (patch)
treea04747d2222543978e9fc0e4af5187976d9f713b /drivers/extcon/extcon-max14577.c
parentMerge tag 'mfd-extcon-regulator-v3.17' of git://git.kernel.org/pub/scm/linux/... (diff)
downloadkernel-qcow2-linux-0a16ee633a83374a2bedbd6a057ab7d7e50a1d50.tar.gz
kernel-qcow2-linux-0a16ee633a83374a2bedbd6a057ab7d7e50a1d50.tar.xz
kernel-qcow2-linux-0a16ee633a83374a2bedbd6a057ab7d7e50a1d50.zip
extcon: Remove unnecessary OOM messages
The site-specific OOM messages are unnecessary, because they duplicate the MM subsystem generic OOM message. The following checkpatch warning is also removed. WARNING: Possible unnecessary 'out of memory' message Signed-off-by: Jingoo Han <jg1.han@samsung.com> [Acked by Charles Keepax for arizona part] Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon-max14577.c')
-rw-r--r--drivers/extcon/extcon-max14577.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/extcon/extcon-max14577.c b/drivers/extcon/extcon-max14577.c
index d49e891b5675..7309743d0da1 100644
--- a/drivers/extcon/extcon-max14577.c
+++ b/drivers/extcon/extcon-max14577.c
@@ -692,10 +692,9 @@ static int max14577_muic_probe(struct platform_device *pdev)
u8 id;
info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
- if (!info) {
- dev_err(&pdev->dev, "failed to allocate memory\n");
+ if (!info)
return -ENOMEM;
- }
+
info->dev = &pdev->dev;
info->max14577 = max14577;