Lines Matching defs:clk
34 #include <dev/clk/clk.h>
43 struct clk {
51 struct clk *(*get)(void *, const char *);
52 void (*put)(void *, struct clk *);
54 u_int (*get_rate)(void *, struct clk *);
55 int (*set_rate)(void *, struct clk *, u_int);
56 u_int (*round_rate)(void *, struct clk *, u_int);
57 int (*enable)(void *, struct clk *);
58 int (*disable)(void *, struct clk *);
59 int (*set_parent)(void *, struct clk *, struct clk *);
60 struct clk *(*get_parent)(void *, struct clk *);
63 int clk_attach(struct clk *);