kernel/drivers/clk/mmp/clk-gate.c
.. .. @@ -99,7 +99,7 @@ 99 99 { 100 100 struct mmp_clk_gate *gate; 101 101 struct clk *clk; 102 - struct clk_init_data init = {};102 + struct clk_init_data init;103 103 104 104 /* allocate the gate */ 105 105 gate = kzalloc(sizeof(*gate), GFP_KERNEL); .. .. @@ -108,7 +108,7 @@ 108 108 109 109 init.name = name; 110 110 init.ops = &mmp_clk_gate_ops; 111 - init.flags = flags | CLK_IS_BASIC;111 + init.flags = flags;112 112 init.parent_names = (parent_name ? &parent_name : NULL); 113 113 init.num_parents = (parent_name ? 1 : 0); 114 114