2023-04-27 09:48:30

by Keoseong Park

[permalink] [raw]
Subject: [PATCH] scsi: ufs: core: Change the module parameter macro of use_mcq_mode

mcq_mode_ops uses only param_{set,get}_bool(). Therefore, convert
module_param_cb() to module_param() and remove the mcq_mode_ops.

Signed-off-by: Keoseong Park <[email protected]>
---
drivers/ufs/core/ufshcd.c | 20 ++------------------
1 file changed, 2 insertions(+), 18 deletions(-)

diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
index 9434328ba323..4ae92e8883b3 100644
--- a/drivers/ufs/core/ufshcd.c
+++ b/drivers/ufs/core/ufshcd.c
@@ -98,7 +98,7 @@
/* Polling time to wait for fDeviceInit */
#define FDEVICEINIT_COMPL_TIMEOUT 1500 /* millisecs */

-/* UFSHC 4.0 compliant HC support this mode, refer param_set_mcq_mode() */
+/* UFSHC 4.0 compliant HC support this mode. */
static bool use_mcq_mode = true;

static bool is_mcq_supported(struct ufs_hba *hba)
@@ -106,23 +106,7 @@ static bool is_mcq_supported(struct ufs_hba *hba)
return hba->mcq_sup && use_mcq_mode;
}

-static int param_set_mcq_mode(const char *val, const struct kernel_param *kp)
-{
- int ret;
-
- ret = param_set_bool(val, kp);
- if (ret)
- return ret;
-
- return 0;
-}
-
-static const struct kernel_param_ops mcq_mode_ops = {
- .set = param_set_mcq_mode,
- .get = param_get_bool,
-};
-
-module_param_cb(use_mcq_mode, &mcq_mode_ops, &use_mcq_mode, 0644);
+module_param(use_mcq_mode, bool, 0644);
MODULE_PARM_DESC(use_mcq_mode, "Control MCQ mode for controllers starting from UFSHCI 4.0. 1 - enable MCQ, 0 - disable MCQ. MCQ is enabled by default");

#define ufshcd_toggle_vreg(_dev, _vreg, _on) \
--
2.17.1


2023-05-01 17:35:18

by Bart Van Assche

[permalink] [raw]
Subject: Re: [PATCH] scsi: ufs: core: Change the module parameter macro of use_mcq_mode

On 4/27/23 02:44, Keoseong Park wrote:
> mcq_mode_ops uses only param_{set,get}_bool(). Therefore, convert
> module_param_cb() to module_param() and remove the mcq_mode_ops.

Reviewed-by: Bart Van Assche <[email protected]>

2023-05-03 05:12:17

by Stanley Jhu

[permalink] [raw]
Subject: Re: [PATCH] scsi: ufs: core: Change the module parameter macro of use_mcq_mode

Keoseong Park <[email protected]> 於 2023年4月27日 週四 下午5:48寫道:
>
> mcq_mode_ops uses only param_{set,get}_bool(). Therefore, convert
> module_param_cb() to module_param() and remove the mcq_mode_ops.
>

Reviewed-by: Stanley Chu <[email protected]>

2023-05-06 22:46:12

by Martin K. Petersen

[permalink] [raw]
Subject: Re: [PATCH] scsi: ufs: core: Change the module parameter macro of use_mcq_mode


Keoseong,

> mcq_mode_ops uses only param_{set,get}_bool(). Therefore, convert
> module_param_cb() to module_param() and remove the mcq_mode_ops.

Applied to 6.5/scsi-staging, thanks!

--
Martin K. Petersen Oracle Linux Engineering

2023-05-17 02:15:17

by Martin K. Petersen

[permalink] [raw]
Subject: Re: [PATCH] scsi: ufs: core: Change the module parameter macro of use_mcq_mode

On Thu, 27 Apr 2023 18:44:20 +0900, Keoseong Park wrote:

> mcq_mode_ops uses only param_{set,get}_bool(). Therefore, convert
> module_param_cb() to module_param() and remove the mcq_mode_ops.
>
>

Applied to 6.5/scsi-queue, thanks!

[1/1] scsi: ufs: core: Change the module parameter macro of use_mcq_mode
https://git.kernel.org/mkp/scsi/c/9a4327fd8864

--
Martin K. Petersen Oracle Linux Engineering