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

Commit 42877236 authored by Thomas Meyer's avatar Thomas Meyer Committed by Jonathan Cameron
Browse files

iio: at91_adc: Cocci spatch "noderef"



sizeof when applied to a pointer typed expression gives the size of the
pointer.
Found by coccinelle spatch "misc/noderef.cocci"

Signed-off-by: default avatarThomas Meyer <thomas@m3y3r.de>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 2bdb3afc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -279,7 +279,7 @@ static int at91_adc_trigger_init(struct iio_dev *idev)
	int i, ret;

	st->trig = devm_kzalloc(&idev->dev,
				st->trigger_number * sizeof(st->trig),
				st->trigger_number * sizeof(*st->trig),
				GFP_KERNEL);

	if (st->trig == NULL) {