Commit 7e026b64 authored by Navya Sri Nizamkari's avatar Navya Sri Nizamkari Committed by Greg Kroah-Hartman

staging: iio: Use kcalloc instead of kzalloc.

This patch uses kcalloc instead of kzalloc function.
A coccinelle script was used to make this change.
Signed-off-by: default avatarNavya Sri Nizamkari <navyasri.tech@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3637d77f
...@@ -547,8 +547,9 @@ static int ad7280_attr_init(struct ad7280_state *st) ...@@ -547,8 +547,9 @@ static int ad7280_attr_init(struct ad7280_state *st)
{ {
int dev, ch, cnt; int dev, ch, cnt;
st->iio_attr = kzalloc(sizeof(*st->iio_attr) * (st->slave_num + 1) * st->iio_attr = kcalloc(2, sizeof(*st->iio_attr) *
AD7280A_CELLS_PER_DEV * 2, GFP_KERNEL); (st->slave_num + 1) * AD7280A_CELLS_PER_DEV,
GFP_KERNEL);
if (st->iio_attr == NULL) if (st->iio_attr == NULL)
return -ENOMEM; return -ENOMEM;
......
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