diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-02-06 07:10:10 +0100 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2014-03-11 06:42:24 +0100 |
commit | bb339decb33684fcd9a88b62d2abe8bc95f68269 (patch) | |
tree | fbc153c4bbc76f216d84ed7fcca7f0330a0900c2 /drivers/mtd/devices/spear_smi.c | |
parent | mtd: devices: elm: Remove unnecessary OOM messages (diff) | |
download | linux-bb339decb33684fcd9a88b62d2abe8bc95f68269.tar.xz linux-bb339decb33684fcd9a88b62d2abe8bc95f68269.zip |
mtd: spear_smi: 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>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/devices/spear_smi.c')
-rw-r--r-- | drivers/mtd/devices/spear_smi.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mtd/devices/spear_smi.c b/drivers/mtd/devices/spear_smi.c index 423821412062..363da96e6891 100644 --- a/drivers/mtd/devices/spear_smi.c +++ b/drivers/mtd/devices/spear_smi.c @@ -913,7 +913,6 @@ static int spear_smi_probe(struct platform_device *pdev) if (np) { pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); if (!pdata) { - pr_err("%s: ERROR: no memory", __func__); ret = -ENOMEM; goto err; } @@ -943,7 +942,6 @@ static int spear_smi_probe(struct platform_device *pdev) dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_ATOMIC); if (!dev) { ret = -ENOMEM; - dev_err(&pdev->dev, "mem alloc fail\n"); goto err; } |