From: Jingoo Han Date: Thu, 26 Dec 2013 03:00:16 +0000 (+0900) Subject: mtd: atmel_nand: Remove unnecessary OOM messages X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9e3677a8134cb49fcc3e64974500c22f0ad7bb55;p=deliverable%2Flinux.git mtd: atmel_nand: 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 Acked-by: Josh Wu Signed-off-by: Brian Norris --- diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c index 59f08c44abdb..e633c4454bad 100644 --- a/drivers/mtd/nand/atmel_nand.c +++ b/drivers/mtd/nand/atmel_nand.c @@ -1961,10 +1961,8 @@ static int atmel_nand_probe(struct platform_device *pdev) /* Allocate memory for the device structure (and zero it) */ host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL); - if (!host) { - printk(KERN_ERR "atmel_nand: failed to allocate device structure.\n"); + if (!host) return -ENOMEM; - } res = platform_driver_register(&atmel_nand_nfc_driver); if (res)