|
@@ -1928,6 +1928,7 @@ static int swrm_disconnect_port(struct swr_master *master,
|
|
|
struct swrm_mports *mport;
|
|
|
struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
|
|
|
u8 mstr_port_id, mstr_ch_mask;
|
|
|
+ u8 num_port = 0;
|
|
|
|
|
|
if (!swrm) {
|
|
|
dev_err_ratelimited(&master->dev,
|
|
@@ -1960,7 +1961,7 @@ static int swrm_disconnect_port(struct swr_master *master,
|
|
|
if (!port_req) {
|
|
|
dev_err_ratelimited(&master->dev, "%s:port not enabled : port %d\n",
|
|
|
__func__, portinfo->port_id[i]);
|
|
|
- goto err;
|
|
|
+ continue;
|
|
|
}
|
|
|
port_req->req_ch &= ~portinfo->ch_en[i];
|
|
|
mport->req_ch &= ~mstr_ch_mask;
|
|
@@ -1970,12 +1971,13 @@ static int swrm_disconnect_port(struct swr_master *master,
|
|
|
mport->ch_rate = 0;
|
|
|
swrm_update_bus_clk(swrm);
|
|
|
}
|
|
|
+ num_port++;
|
|
|
}
|
|
|
|
|
|
- if (master->num_port <= portinfo->num_port)
|
|
|
- master->num_port = 0;
|
|
|
+ if (master->num_port > num_port)
|
|
|
+ master->num_port -= num_port;
|
|
|
else
|
|
|
- master->num_port -= portinfo->num_port;
|
|
|
+ master->num_port = 0;
|
|
|
set_bit(DISABLE_PENDING, &swrm->port_req_pending);
|
|
|
swr_port_response(master, portinfo->tid);
|
|
|
mutex_unlock(&swrm->mlock);
|