diff mbox series

scsi: ufs: ufs-exynos: Remove pwr_max from parameters list of exynos_ufs_post_pwr_mode()

Message ID 20210311042833.1381-1-zbestahu@gmail.com (mailing list archive)
State Not Applicable
Headers show
Series scsi: ufs: ufs-exynos: Remove pwr_max from parameters list of exynos_ufs_post_pwr_mode() | expand

Commit Message

Yue Hu March 11, 2021, 4:28 a.m. UTC
From: Yue Hu <huyue2@yulong.com>

We don't care pwr_max for post change of power mode.

Signed-off-by: Yue Hu <huyue2@yulong.com>
---
 drivers/scsi/ufs/ufs-exynos.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Martin K. Petersen March 25, 2021, 2:26 a.m. UTC | #1
Yue,

> We don't care pwr_max for post change of power mode.

Applied to 5.13/scsi-staging, thanks!
Martin K. Petersen March 30, 2021, 3:54 a.m. UTC | #2
On Thu, 11 Mar 2021 12:28:33 +0800, Yue Hu wrote:

> We don't care pwr_max for post change of power mode.

Applied to 5.13/scsi-queue, thanks!

[1/1] scsi: ufs: ufs-exynos: Remove pwr_max from parameters list of exynos_ufs_post_pwr_mode()
      https://git.kernel.org/mkp/scsi/c/dfd35e1d5934
diff mbox series

Patch

diff --git a/drivers/scsi/ufs/ufs-exynos.c b/drivers/scsi/ufs/ufs-exynos.c
index 267943a1..70647ea 100644
--- a/drivers/scsi/ufs/ufs-exynos.c
+++ b/drivers/scsi/ufs/ufs-exynos.c
@@ -652,7 +652,6 @@  static int exynos_ufs_pre_pwr_mode(struct ufs_hba *hba,
 
 #define PWR_MODE_STR_LEN	64
 static int exynos_ufs_post_pwr_mode(struct ufs_hba *hba,
-				struct ufs_pa_layer_attr *pwr_max,
 				struct ufs_pa_layer_attr *pwr_req)
 {
 	struct exynos_ufs *ufs = ufshcd_get_variant(hba);
@@ -1155,7 +1154,7 @@  static int exynos_ufs_pwr_change_notify(struct ufs_hba *hba,
 					      dev_req_params);
 		break;
 	case POST_CHANGE:
-		ret = exynos_ufs_post_pwr_mode(hba, NULL, dev_req_params);
+		ret = exynos_ufs_post_pwr_mode(hba, dev_req_params);
 		break;
 	}