|
@@ -176,6 +176,7 @@ static int dao_set_left_input(struct dao *dao, struct rsc *input)
|
|
|
if (!entry)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
+ dao->ops->clear_left_input(dao);
|
|
|
/* Program master and conjugate resources */
|
|
|
input->ops->master(input);
|
|
|
daio->rscl.ops->master(&daio->rscl);
|
|
@@ -204,6 +205,7 @@ static int dao_set_right_input(struct dao *dao, struct rsc *input)
|
|
|
if (!entry)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
+ dao->ops->clear_right_input(dao);
|
|
|
/* Program master and conjugate resources */
|
|
|
input->ops->master(input);
|
|
|
daio->rscr.ops->master(&daio->rscr);
|