scsi: ufshcd: reduce clock scaling polling time window
Clock scaling polling time window is currently 100ms which is more than the clock gating time which is 50ms and during clock gating, clock scaling logic would be disabled. This may make the clocks to remain scaled down for longer period of time, fix this by reducing the clock scaling polling window less than clock gating timeout. Change-Id: I8365470c7a6bd4950c1decbd418272359475c366 Signed-off-by: Subhash Jadavani <subhashj@codeaurora.org>
This commit is contained in:
parent
14e40e8800
commit
a5711f5c0d
1 changed files with 1 additions and 1 deletions
|
@ -8605,7 +8605,7 @@ static void *gov_data;
|
|||
#endif
|
||||
|
||||
static struct devfreq_dev_profile ufs_devfreq_profile = {
|
||||
.polling_ms = 100,
|
||||
.polling_ms = 40,
|
||||
.target = ufshcd_devfreq_target,
|
||||
.get_dev_status = ufshcd_devfreq_get_dev_status,
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue