diff options
| author | Jingoo Han <[email protected]> | 2014-02-06 06:11:09 +0000 |
|---|---|---|
| committer | Brian Norris <[email protected]> | 2014-03-11 05:42:24 +0000 |
| commit | c00cb1b7748aa0e6d2efeb8f4486d788ae61765e (patch) | |
| tree | f2088d45551266923ef63beb72903f3b9a2a5a0b | |
| parent | mtd: spear_smi: Remove unnecessary OOM messages (diff) | |
| download | kernel-c00cb1b7748aa0e6d2efeb8f4486d788ae61765e.tar.gz kernel-c00cb1b7748aa0e6d2efeb8f4486d788ae61765e.zip | |
mtd: pmc551: 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 <[email protected]>
Signed-off-by: Brian Norris <[email protected]>
| -rw-r--r-- | drivers/mtd/devices/pmc551.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/mtd/devices/pmc551.c b/drivers/mtd/devices/pmc551.c index 0c51b988e1f8..f02603e1bfeb 100644 --- a/drivers/mtd/devices/pmc551.c +++ b/drivers/mtd/devices/pmc551.c @@ -725,16 +725,11 @@ static int __init init_pmc551(void) } mtd = kzalloc(sizeof(struct mtd_info), GFP_KERNEL); - if (!mtd) { - printk(KERN_NOTICE "pmc551: Cannot allocate new MTD " - "device.\n"); + if (!mtd) break; - } priv = kzalloc(sizeof(struct mypriv), GFP_KERNEL); if (!priv) { - printk(KERN_NOTICE "pmc551: Cannot allocate new MTD " - "device.\n"); kfree(mtd); break; } |
