aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/adc/at91_adc.c
diff options
context:
space:
mode:
authorThomas Meyer <thomas@m3y3r.de>2013-09-19 17:42:00 -0400
committerJonathan Cameron <jic23@kernel.org>2013-09-20 14:41:41 -0400
commit42877236160baaa785cfdcb281a653a012c82a2b (patch)
tree58c3ac557f9efa429421ec3374610dde74d35330 /drivers/iio/adc/at91_adc.c
parent2bdb3afcecff232b8670648755a222494d00981d (diff)
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: Thomas Meyer <thomas@m3y3r.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/adc/at91_adc.c')
-rw-r--r--drivers/iio/adc/at91_adc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/at91_adc.c b/drivers/iio/adc/at91_adc.c
index 6da5ebb25502..79c53b8e195c 100644
--- a/drivers/iio/adc/at91_adc.c
+++ b/drivers/iio/adc/at91_adc.c
@@ -279,7 +279,7 @@ static int at91_adc_trigger_init(struct iio_dev *idev)
279 int i, ret; 279 int i, ret;
280 280
281 st->trig = devm_kzalloc(&idev->dev, 281 st->trig = devm_kzalloc(&idev->dev,
282 st->trigger_number * sizeof(st->trig), 282 st->trigger_number * sizeof(*st->trig),
283 GFP_KERNEL); 283 GFP_KERNEL);
284 284
285 if (st->trig == NULL) { 285 if (st->trig == NULL) {