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

Commit 70bad04f authored by Ashok G's avatar Ashok G Committed by Lee Jones
Browse files

mfd: ab8500-debugfs: sizeof() mismatch bugfix



Simple pointer error fix to obtain the expected sizeof() result.

Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarAshok G <ashok.g@stericsson.com>
Reviewed-by: default avatarMattias WALLIN <mattias.wallin@stericsson.com>
parent 5f8aaef4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1567,7 +1567,7 @@ static int ab8500_debug_probe(struct platform_device *plf)
	ab8500 = dev_get_drvdata(plf->dev.parent);
	num_irqs = ab8500->mask_size;

	irq_count = kzalloc(sizeof(irq_count)*num_irqs, GFP_KERNEL);
	irq_count = kzalloc(sizeof(*irq_count)*num_irqs, GFP_KERNEL);
	if (!irq_count)
		return -ENOMEM;