Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 844a72c5 authored by Jingoo Han's avatar Jingoo Han Committed by Brian Norris
Browse files

mtd: txx9ndfmc: 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 51b37b8a
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -319,11 +319,8 @@ static int __init txx9ndfmc_probe(struct platform_device *dev)
			continue;
		txx9_priv = kzalloc(sizeof(struct txx9ndfmc_priv),
				    GFP_KERNEL);
		if (!txx9_priv) {
			dev_err(&dev->dev, "Unable to allocate "
				"TXx9 NDFMC MTD device structure.\n");
		if (!txx9_priv)
			continue;
		}
		chip = &txx9_priv->chip;
		mtd = &txx9_priv->mtd;
		mtd->owner = THIS_MODULE;