Commit 6c721acd authored by Boris Brezillon's avatar Boris Brezillon Committed by Miquel Raynal

mtd: rawnand: sunxi: Use struct_size()

Use struct_size() to calculate sunxi_nand object size.
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
parent f385ebf0
...@@ -1871,9 +1871,7 @@ static int sunxi_nand_chip_init(struct device *dev, struct sunxi_nfc *nfc, ...@@ -1871,9 +1871,7 @@ static int sunxi_nand_chip_init(struct device *dev, struct sunxi_nfc *nfc,
return -EINVAL; return -EINVAL;
} }
sunxi_nand = devm_kzalloc(dev, sunxi_nand = devm_kzalloc(dev, struct_size(sunxi_nand, sels, nsels),
sizeof(*sunxi_nand) +
(nsels * sizeof(struct sunxi_nand_chip_sel)),
GFP_KERNEL); GFP_KERNEL);
if (!sunxi_nand) { if (!sunxi_nand) {
dev_err(dev, "could not allocate chip\n"); dev_err(dev, "could not allocate chip\n");
......
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