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