Commit a22b0a2b authored by Cosmin Tanislav's avatar Cosmin Tanislav Committed by Jonathan Cameron

iio: adc: ad4130: zero-initialize clock init data

The clk_init_data struct does not have all its members
initialized, causing issues when trying to expose the internal
clock on the CLK pin.

Fix this by zero-initializing the clk_init_data struct.

Fixes: 62094060 ("iio: adc: ad4130: add AD4130 driver")
Signed-off-by: default avatarCosmin Tanislav <demonsingur@gmail.com>
Reviewed-by: default avatarNuno Sa <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20240207132007.253768-1-demonsingur@gmail.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 4cb81840
...@@ -1821,7 +1821,7 @@ static int ad4130_setup_int_clk(struct ad4130_state *st) ...@@ -1821,7 +1821,7 @@ static int ad4130_setup_int_clk(struct ad4130_state *st)
{ {
struct device *dev = &st->spi->dev; struct device *dev = &st->spi->dev;
struct device_node *of_node = dev_of_node(dev); struct device_node *of_node = dev_of_node(dev);
struct clk_init_data init; struct clk_init_data init = {};
const char *clk_name; const char *clk_name;
int ret; int ret;
......
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