Searched refs:clkidef (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/dev/iicbus/pmic/rockchip/ |
H A D | rk8xx_clocks.c | 97 struct clknode_init_def clkidef; in rk8xx_attach_clocks() local 112 memset(&clkidef, 0, sizeof(clkidef)); in rk8xx_attach_clocks() 113 clkidef.id = 0; in rk8xx_attach_clocks() 114 clkidef.name = (nclks == 2) ? clknames[0] : "clk32kout1"; in rk8xx_attach_clocks() 115 clk = clknode_create(clkdom, &rk8xx_clk_clknode_class_0, &clkidef); in rk8xx_attach_clocks() 117 device_printf(sc->dev, "Cannot create '%s'.\n", clkidef.name); in rk8xx_attach_clocks() 124 memset(&clkidef, 0, sizeof(clkidef)); in rk8xx_attach_clocks() 125 clkidef.id = 1; in rk8xx_attach_clocks() 126 clkidef.name = (nclks == 2) ? clknames[1] : "clk32kout2"; in rk8xx_attach_clocks() 127 clk = clknode_create(clkdom, &rk8xx_clk_clknode_class_1, &clkidef); in rk8xx_attach_clocks() [all …]
|