@@ -8723,12 +8723,12 @@ static void ufshcd_memory_free(struct ufs_hba *hba)
}
}
-static int ufshcd_alloc_mcq(struct ufs_hba *hba)
+static int ufshcd_alloc_mcq(struct ufs_hba *hba, u32 ufs_dev_qd)
{
int ret;
int old_nutrs = hba->nutrs;
- ret = ufshcd_mcq_decide_queue_depth(hba, hba->dev_info.bqueuedepth);
+ ret = ufshcd_mcq_decide_queue_depth(hba, ufs_dev_qd);
if (ret < 0)
return ret;
@@ -10422,7 +10422,7 @@ static int ufshcd_add_scsi_host(struct ufs_hba *hba)
if (is_mcq_supported(hba)) {
ufshcd_mcq_enable(hba);
- err = ufshcd_alloc_mcq(hba);
+ err = ufshcd_alloc_mcq(hba, hba->dev_info.bqueuedepth);
if (!err) {
ufshcd_config_mcq(hba);
} else {
Prepare for allocating SCSI commands in two steps by making the UFS device queue depth an argument of ufshcd_alloc_mcq(). Signed-off-by: Bart Van Assche <bvanassche@acm.org> --- drivers/ufs/core/ufshcd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)