We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa6ffe6 commit 75061a6Copy full SHA for 75061a6
drivers/clk/clk.c
@@ -37,7 +37,7 @@ static HLIST_HEAD(clk_root_list);
37
static HLIST_HEAD(clk_orphan_list);
38
static LIST_HEAD(clk_notifier_list);
39
40
-static struct hlist_head *all_lists[] = {
+static const struct hlist_head *all_lists[] = {
41
&clk_root_list,
42
&clk_orphan_list,
43
NULL,
@@ -4095,7 +4095,7 @@ static void clk_core_evict_parent_cache_subtree(struct clk_core *root,
4095
/* Remove this clk from all parent caches */
4096
static void clk_core_evict_parent_cache(struct clk_core *core)
4097
{
4098
- struct hlist_head **lists;
+ const struct hlist_head **lists;
4099
struct clk_core *root;
4100
4101
lockdep_assert_held(&prepare_lock);
0 commit comments