Lines Matching defs:reset
17 #include <linux/reset.h>
199 struct reset_control *reset;
227 reset = devm_reset_control_get_exclusive(dev, NULL);
228 if (IS_ERR(reset)) {
229 ret = PTR_ERR(reset);
230 dev_err(dev, "Failed to get reset control: %d\n", ret);
239 * Therefore, we do *not* assert the reset line if probing fails or
242 ret = reset_control_deassert(reset);
244 dev_err(dev, "Failed to deassert reset: %d\n", ret);
295 /* See the comment in sun6i_msgbox_probe about the reset line. */