Lines Matching refs:reset_control

6 struct reset_control;
10 int reset_control_reset(struct reset_control *rstc);
11 int reset_control_assert(struct reset_control *rstc);
12 int reset_control_deassert(struct reset_control *rstc);
13 int reset_control_status(struct reset_control *rstc);
15 struct reset_control *reset_control_get(struct device *dev, const char *id);
16 void reset_control_put(struct reset_control *rstc);
17 struct reset_control *devm_reset_control_get(struct device *dev, const char *id);
26 static inline struct reset_control *reset_control_get_optional( in reset_control_get_optional()
32 static inline struct reset_control *devm_reset_control_get_optional( in devm_reset_control_get_optional()
38 struct reset_control *of_reset_control_get(struct device_node *node,
43 static inline int reset_control_reset(struct reset_control *rstc) in reset_control_reset()
49 static inline int reset_control_assert(struct reset_control *rstc) in reset_control_assert()
55 static inline int reset_control_deassert(struct reset_control *rstc) in reset_control_deassert()
61 static inline int reset_control_status(struct reset_control *rstc) in reset_control_status()
67 static inline void reset_control_put(struct reset_control *rstc) in reset_control_put()
77 static inline struct reset_control *__must_check reset_control_get( in reset_control_get()
84 static inline struct reset_control *__must_check devm_reset_control_get( in devm_reset_control_get()
91 static inline struct reset_control *reset_control_get_optional( in reset_control_get_optional()
97 static inline struct reset_control *devm_reset_control_get_optional( in devm_reset_control_get_optional()
103 static inline struct reset_control *of_reset_control_get( in of_reset_control_get()