Lines Matching defs:reset
10 #include <linux/reset.h>
24 struct reset_control *reset;
96 * The hypothesis is that an HW counter is not properly reset
99 * reset this through the registers of the block.
101 * However, the g12a has indenpendent reset lines for each audio
102 * devices. Using this reset before each start solves the issue.
104 ret = reset_control_reset(formatter->reset);
338 /* Formatter dedicated reset line */
339 formatter->reset = devm_reset_control_get_optional_exclusive(dev, NULL);
340 if (IS_ERR(formatter->reset)) {
341 ret = PTR_ERR(formatter->reset);
343 dev_err(dev, "failed to get reset: %d\n", ret);