Searched refs:clkidef (Results 1 – 2 of 2) 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 …]
|
| /freebsd/sys/dev/iicbus/rtc/ |
| H A D | hym8563.c | 260 struct clknode_init_def clkidef; in hym8563_attach_clocks() local 275 memset(&clkidef, 0, sizeof(clkidef)); in hym8563_attach_clocks() 276 clkidef.id = 1; in hym8563_attach_clocks() 277 clkidef.name = (nclks == 1) ? clknames[0] : "hym8563-clkout"; in hym8563_attach_clocks() 278 clk = clknode_create(clkdom, &hym8563_clk_clknode_class, &clkidef); in hym8563_attach_clocks() 280 device_printf(sc->dev, "Cannot create '%s'.\n", clkidef.name); in hym8563_attach_clocks()
|