Lines Matching refs:init
1316 struct clk_init_data init; in si5351_i2c_probe() local
1424 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1425 init.name = si5351_input_names[0]; in si5351_i2c_probe()
1426 init.ops = &si5351_xtal_ops; in si5351_i2c_probe()
1427 init.flags = 0; in si5351_i2c_probe()
1430 init.parent_names = &drvdata->pxtal_name; in si5351_i2c_probe()
1431 init.num_parents = 1; in si5351_i2c_probe()
1433 drvdata->xtal.init = &init; in si5351_i2c_probe()
1436 dev_err(&client->dev, "unable to register %s\n", init.name); in si5351_i2c_probe()
1443 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1444 init.name = si5351_input_names[1]; in si5351_i2c_probe()
1445 init.ops = &si5351_clkin_ops; in si5351_i2c_probe()
1448 init.parent_names = &drvdata->pclkin_name; in si5351_i2c_probe()
1449 init.num_parents = 1; in si5351_i2c_probe()
1451 drvdata->clkin.init = &init; in si5351_i2c_probe()
1455 init.name); in si5351_i2c_probe()
1469 drvdata->pll[0].hw.init = &init; in si5351_i2c_probe()
1470 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1471 init.name = si5351_pll_names[0]; in si5351_i2c_probe()
1472 init.ops = &si5351_pll_ops; in si5351_i2c_probe()
1473 init.flags = 0; in si5351_i2c_probe()
1474 init.parent_names = parent_names; in si5351_i2c_probe()
1475 init.num_parents = num_parents; in si5351_i2c_probe()
1478 dev_err(&client->dev, "unable to register %s\n", init.name); in si5351_i2c_probe()
1486 drvdata->pll[1].hw.init = &init; in si5351_i2c_probe()
1487 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1489 init.name = si5351_pll_names[2]; in si5351_i2c_probe()
1490 init.ops = &si5351_vxco_ops; in si5351_i2c_probe()
1491 init.flags = CLK_IS_ROOT; in si5351_i2c_probe()
1492 init.parent_names = NULL; in si5351_i2c_probe()
1493 init.num_parents = 0; in si5351_i2c_probe()
1495 init.name = si5351_pll_names[1]; in si5351_i2c_probe()
1496 init.ops = &si5351_pll_ops; in si5351_i2c_probe()
1497 init.flags = 0; in si5351_i2c_probe()
1498 init.parent_names = parent_names; in si5351_i2c_probe()
1499 init.num_parents = num_parents; in si5351_i2c_probe()
1503 dev_err(&client->dev, "unable to register %s\n", init.name); in si5351_i2c_probe()
1534 drvdata->msynth[n].hw.init = &init; in si5351_i2c_probe()
1535 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1536 init.name = si5351_msynth_names[n]; in si5351_i2c_probe()
1537 init.ops = &si5351_msynth_ops; in si5351_i2c_probe()
1538 init.flags = 0; in si5351_i2c_probe()
1540 init.flags |= CLK_SET_RATE_PARENT; in si5351_i2c_probe()
1541 init.parent_names = parent_names; in si5351_i2c_probe()
1542 init.num_parents = 2; in si5351_i2c_probe()
1546 init.name); in si5351_i2c_probe()
1562 drvdata->clkout[n].hw.init = &init; in si5351_i2c_probe()
1563 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1564 init.name = si5351_clkout_names[n]; in si5351_i2c_probe()
1565 init.ops = &si5351_clkout_ops; in si5351_i2c_probe()
1566 init.flags = 0; in si5351_i2c_probe()
1568 init.flags |= CLK_SET_RATE_PARENT; in si5351_i2c_probe()
1569 init.parent_names = parent_names; in si5351_i2c_probe()
1570 init.num_parents = num_parents; in si5351_i2c_probe()
1574 init.name); in si5351_i2c_probe()