Commit ce3737f0 authored by Jingoo Han's avatar Jingoo Han Committed by Brian Norris

mtd: au1550nd: Remove unnecessary OOM messages

The site-specific OOM messages are unnecessary, because they
duplicate the MM subsystem generic OOM message.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent fc59a51e
...@@ -418,10 +418,8 @@ static int au1550nd_probe(struct platform_device *pdev) ...@@ -418,10 +418,8 @@ static int au1550nd_probe(struct platform_device *pdev)
} }
ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
if (!ctx) { if (!ctx)
dev_err(&pdev->dev, "no memory for NAND context\n");
return -ENOMEM; return -ENOMEM;
}
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!r) { if (!r) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment