projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bdb3af
)
iio: at91_adc: Cocci spatch "noderef"
author
Thomas Meyer
<thomas@m3y3r.de>
Thu, 19 Sep 2013 21:42:00 +0000
(22:42 +0100)
committer
Jonathan Cameron
<jic23@kernel.org>
Fri, 20 Sep 2013 18:41:41 +0000
(19:41 +0100)
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>
drivers/iio/adc/at91_adc.c
patch
|
blob
|
history
diff --git
a/drivers/iio/adc/at91_adc.c
b/drivers/iio/adc/at91_adc.c
index
6da5ebb
..
79c53b8
100644
(file)
--- 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)
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) {