scsi: ufs: fix parameter type from bool to enum ufs_notify_change_status
This change fixes the signature of the routine ufshcd_vops_clk_scale_notify() and the callback clk_scale_notify to receive enum ufs_notify_change_status instead of bool as their 3rd parameter. Change-Id: I8463f4f5f0a77bcbc3b0bcdfd05d1a02e334dc8e Signed-off-by: Yaniv Gardi <ygardi@codeaurora.org>
This commit is contained in:
parent
cb90b9b081
commit
d502efe061
1 changed files with 1 additions and 1 deletions
|
@ -1953,7 +1953,7 @@ static int ufs_qcom_clk_scale_down_post_change(struct ufs_hba *hba)
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ufs_qcom_clk_scale_notify(struct ufs_hba *hba,
|
static int ufs_qcom_clk_scale_notify(struct ufs_hba *hba,
|
||||||
bool scale_up, bool status)
|
bool scale_up, enum ufs_notify_change_status status)
|
||||||
{
|
{
|
||||||
struct ufs_qcom_host *host = ufshcd_get_variant(hba);
|
struct ufs_qcom_host *host = ufshcd_get_variant(hba);
|
||||||
struct ufs_pa_layer_attr *dev_req_params = &host->dev_req_params;
|
struct ufs_pa_layer_attr *dev_req_params = &host->dev_req_params;
|
||||||
|
|
Loading…
Add table
Reference in a new issue