Lines Matching refs:clk_init
1097 struct clk_init_data clk_init; in vc7_probe() local
1143 memset(&clk_init, 0, sizeof(clk_init)); in vc7_probe()
1144 clk_init.name = kasprintf(GFP_KERNEL, "%s_fod%d", node_name, i); in vc7_probe()
1145 clk_init.ops = &vc7_fod_ops; in vc7_probe()
1146 clk_init.parent_names = parent_names; in vc7_probe()
1148 clk_init.num_parents = 1; in vc7_probe()
1151 vc7->clk_fod[i].hw.init = &clk_init; in vc7_probe()
1155 kfree(clk_init.name); /* ccf made a copy of the name */ in vc7_probe()
1160 memset(&clk_init, 0, sizeof(clk_init)); in vc7_probe()
1161 clk_init.name = kasprintf(GFP_KERNEL, "%s_iod%d", node_name, i); in vc7_probe()
1162 clk_init.ops = &vc7_iod_ops; in vc7_probe()
1163 clk_init.parent_names = parent_names; in vc7_probe()
1165 clk_init.num_parents = 1; in vc7_probe()
1168 vc7->clk_iod[i].hw.init = &clk_init; in vc7_probe()
1172 kfree(clk_init.name); /* ccf made a copy of the name */ in vc7_probe()
1206 memset(&clk_init, 0, sizeof(clk_init)); in vc7_probe()
1207 clk_init.name = kasprintf(GFP_KERNEL, "%s_out%d", node_name, i); in vc7_probe()
1208 clk_init.ops = &vc7_clk_out_ops; in vc7_probe()
1209 clk_init.flags = CLK_SET_RATE_PARENT; in vc7_probe()
1210 clk_init.parent_names = parent_names; in vc7_probe()
1211 clk_init.num_parents = 1; in vc7_probe()
1214 vc7->clk_out[i].hw.init = &clk_init; in vc7_probe()
1218 kfree(clk_init.name); /* ccf made a copy of the name */ in vc7_probe()
1231 "unable to register %s\n", clk_init.name); in vc7_probe()
1232 kfree(clk_init.name); /* ccf made a copy of the name */ in vc7_probe()