Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'samsung-clk-fixes-6.12' of https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux into clk-fixes

Pull a Samsung clk driver fix from Krzysztof Kozlowski:

Add missing sentinel in of_device_id table so the code iterating over it
will not go over the size of an array.

* tag 'samsung-clk-fixes-6.12' of https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux:
clk: samsung: Fix out-of-bound access of of_match_node()

+1
+1
drivers/clk/samsung/clk-exynosautov920.c
··· 1155 .compatible = "samsung,exynosautov920-cmu-peric0", 1156 .data = &peric0_cmu_info, 1157 }, 1158 }; 1159 1160 static struct platform_driver exynosautov920_cmu_driver __refdata = {
··· 1155 .compatible = "samsung,exynosautov920-cmu-peric0", 1156 .data = &peric0_cmu_info, 1157 }, 1158 + { } 1159 }; 1160 1161 static struct platform_driver exynosautov920_cmu_driver __refdata = {