diff options
| author | Geert Uytterhoeven <geert+renesas@glider.be> | 2026-08-21 10:53:40 +0200 |
|---|---|---|
| committer | Brian Masney <bmasney@redhat.com> | 2026-08-31 11:29:39 -0400 |
| commit | 40814a899facb59d8a8bc4c2315f7d81237db0a8 (patch) | |
| tree | c7a48cb6ab51470a0199d782ac4befbefaf83019 | |
| parent | 03f7a64e9d6dc47ae743c86aff9c504741873385 (diff) | |
| download | linux-next-40814a899facb59d8a8bc4c2315f7d81237db0a8.tar.gz linux-next-40814a899facb59d8a8bc4c2315f7d81237db0a8.zip | |
clk: scpi: Make sure clk_init_data is fully initialized
The clk_init_data structure contains several mutually-exclusive members
for different methods to specify the possible parents of a clock,
prompting drivers to initialize only the members they need. However,
not initializing all members may cause subtle issues, which are only
exposed when CONFIG_INIT_STACK_ALL_PATTERN or CONFIG_INIT_STACK_NONE is
enabled.
Make sure all members are fully initialized, to avoid such bugs, and to
prevent future breakage when converting drivers to a different method
for specifying the parents.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Message-ID: <939f1be93abebc7967a889e9c24c34942df8229a.1787239813.git.geert+renesas@glider.be>
Signed-off-by: Brian Masney <bmasney@redhat.com>
| -rw-r--r-- | drivers/clk/clk-scpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-scpi.c b/drivers/clk/clk-scpi.c index 2328d2abf6d8..16796cf3c892 100644 --- a/drivers/clk/clk-scpi.c +++ b/drivers/clk/clk-scpi.c @@ -128,7 +128,7 @@ static int scpi_clk_ops_init(struct device *dev, const struct of_device_id *match, struct scpi_clk *sclk, const char *name) { - struct clk_init_data init; + struct clk_init_data init = {}; unsigned long min = 0, max = 0; int ret; |
