Forráskód Böngészése

Merge "soc: swr-mstr: fix noise issue with mono speaker"

Linux Build Service Account 6 éve
szülő
commit
8e9f1b03cb
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      soc/swr-mstr-ctrl.c

+ 2 - 2
soc/swr-mstr-ctrl.c

@@ -725,7 +725,7 @@ static void swrm_cleanup_disabled_port_reqs(struct swr_master *master)
 				continue;
 
 			/* remove new ch req's*/
-			port_req->req_ch = port_req->ch_en;
+			port_req->ch_en = port_req->req_ch;
 
 			/* If no streams enabled on port, remove the port req */
 			if (port_req->ch_en == 0) {
@@ -734,7 +734,7 @@ static void swrm_cleanup_disabled_port_reqs(struct swr_master *master)
 			}
 		}
 		/* remove new ch req's on mport*/
-		mport->req_ch = mport->ch_en;
+		mport->ch_en = mport->req_ch;
 
 		if (!(mport->ch_en)) {
 			mport->port_en = false;