diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2024-10-10 10:51:01 +0200 |
---|---|---|
committer | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2024-10-10 10:51:01 +0200 |
commit | ac08b52a5f32d9b40232549bc129559aee2b967a (patch) | |
tree | ad2761cfba861145c8c47ff2f506b7e38776a27d | |
parent | 56051619c35b44e4b2183213db8a1bb7ab6d4cc5 (diff) | |
parent | a03c246d4ec836ae5827a4a16f6b9e730ec5ee8c (diff) |
Merge tag 'samsung-clk-fixes-6.12' into next/clk
Samsung clock controller fixes for v6.12
Add missing sentinel in of_device_id table, so the code iterating over
it will not go over the size of an array.
Further code depends on the fixes branch.
-rw-r--r-- | drivers/clk/samsung/clk-exynosautov920.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/samsung/clk-exynosautov920.c b/drivers/clk/samsung/clk-exynosautov920.c index 7ba9748c0526..f60f0a0c598d 100644 --- a/drivers/clk/samsung/clk-exynosautov920.c +++ b/drivers/clk/samsung/clk-exynosautov920.c @@ -1155,6 +1155,7 @@ static const struct of_device_id exynosautov920_cmu_of_match[] = { .compatible = "samsung,exynosautov920-cmu-peric0", .data = &peric0_cmu_info, }, + { } }; static struct platform_driver exynosautov920_cmu_driver __refdata = { |