Lines Matching refs:init

1301 	struct clk_init_data init;  in si5351_i2c_probe()  local
1409 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1410 init.name = si5351_input_names[0]; in si5351_i2c_probe()
1411 init.ops = &si5351_xtal_ops; in si5351_i2c_probe()
1412 init.flags = 0; in si5351_i2c_probe()
1415 init.parent_names = &drvdata->pxtal_name; in si5351_i2c_probe()
1416 init.num_parents = 1; in si5351_i2c_probe()
1418 drvdata->xtal.init = &init; in si5351_i2c_probe()
1421 dev_err(&client->dev, "unable to register %s\n", init.name); in si5351_i2c_probe()
1428 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1429 init.name = si5351_input_names[1]; in si5351_i2c_probe()
1430 init.ops = &si5351_clkin_ops; in si5351_i2c_probe()
1433 init.parent_names = &drvdata->pclkin_name; in si5351_i2c_probe()
1434 init.num_parents = 1; in si5351_i2c_probe()
1436 drvdata->clkin.init = &init; in si5351_i2c_probe()
1440 init.name); in si5351_i2c_probe()
1454 drvdata->pll[0].hw.init = &init; in si5351_i2c_probe()
1455 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1456 init.name = si5351_pll_names[0]; in si5351_i2c_probe()
1457 init.ops = &si5351_pll_ops; in si5351_i2c_probe()
1458 init.flags = 0; in si5351_i2c_probe()
1459 init.parent_names = parent_names; in si5351_i2c_probe()
1460 init.num_parents = num_parents; in si5351_i2c_probe()
1463 dev_err(&client->dev, "unable to register %s\n", init.name); in si5351_i2c_probe()
1471 drvdata->pll[1].hw.init = &init; in si5351_i2c_probe()
1472 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1474 init.name = si5351_pll_names[2]; in si5351_i2c_probe()
1475 init.ops = &si5351_vxco_ops; in si5351_i2c_probe()
1476 init.flags = CLK_IS_ROOT; in si5351_i2c_probe()
1477 init.parent_names = NULL; in si5351_i2c_probe()
1478 init.num_parents = 0; in si5351_i2c_probe()
1480 init.name = si5351_pll_names[1]; in si5351_i2c_probe()
1481 init.ops = &si5351_pll_ops; in si5351_i2c_probe()
1482 init.flags = 0; in si5351_i2c_probe()
1483 init.parent_names = parent_names; in si5351_i2c_probe()
1484 init.num_parents = num_parents; in si5351_i2c_probe()
1488 dev_err(&client->dev, "unable to register %s\n", init.name); in si5351_i2c_probe()
1519 drvdata->msynth[n].hw.init = &init; in si5351_i2c_probe()
1520 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1521 init.name = si5351_msynth_names[n]; in si5351_i2c_probe()
1522 init.ops = &si5351_msynth_ops; in si5351_i2c_probe()
1523 init.flags = 0; in si5351_i2c_probe()
1525 init.flags |= CLK_SET_RATE_PARENT; in si5351_i2c_probe()
1526 init.parent_names = parent_names; in si5351_i2c_probe()
1527 init.num_parents = 2; in si5351_i2c_probe()
1531 init.name); in si5351_i2c_probe()
1547 drvdata->clkout[n].hw.init = &init; in si5351_i2c_probe()
1548 memset(&init, 0, sizeof(init)); in si5351_i2c_probe()
1549 init.name = si5351_clkout_names[n]; in si5351_i2c_probe()
1550 init.ops = &si5351_clkout_ops; in si5351_i2c_probe()
1551 init.flags = 0; in si5351_i2c_probe()
1553 init.flags |= CLK_SET_RATE_PARENT; in si5351_i2c_probe()
1554 init.parent_names = parent_names; in si5351_i2c_probe()
1555 init.num_parents = num_parents; in si5351_i2c_probe()
1559 init.name); in si5351_i2c_probe()