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

Commit edaf4d4a authored by Fabio Estevam's avatar Fabio Estevam Committed by Brian Norris
Browse files

mtd: gpmi: Use devm_kzalloc()



Using devm_kzalloc() can make the code simpler.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Acked-by: default avatarHuang Shijie <b32955@freescale.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent a749d13a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1732,7 +1732,7 @@ static int gpmi_nand_probe(struct platform_device *pdev)
		return -ENODEV;
	}

	this = kzalloc(sizeof(*this), GFP_KERNEL);
	this = devm_kzalloc(&pdev->dev, sizeof(*this), GFP_KERNEL);
	if (!this) {
		pr_err("Failed to allocate per-device memory\n");
		return -ENOMEM;
@@ -1762,7 +1762,6 @@ exit_nfc_init:
	release_resources(this);
exit_acquire_resources:
	dev_err(this->dev, "driver registration failed: %d\n", ret);
	kfree(this);

	return ret;
}
@@ -1773,7 +1772,6 @@ static int gpmi_nand_remove(struct platform_device *pdev)

	gpmi_nfc_exit(this);
	release_resources(this);
	kfree(this);
	return 0;
}