Patch "drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function" has been added to the 5.17-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function

to the 5.17-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-amd-pm-return-enotsupp-if-there-is-no-get_dpm_ul.patch
and it can be found in the queue-5.17 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit d5cef14a4355278a9f4bdc562171ed7492b2a996
Author: Tom Rix <trix@xxxxxxxxxx>
Date:   Mon Jan 24 12:18:12 2022 -0800

    drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function
    
    [ Upstream commit 430e6a0212b2a0eb1de5e9d47a016fa79edf3978 ]
    
    clang static analysis reports this represenative problem
    amdgpu_smu.c:144:18: warning: The left operand of '*' is a garbage value
            return clk_freq * 100;
                   ~~~~~~~~ ^
    
    If there is no get_dpm_ultimate_freq function,
    smu_get_dpm_freq_range returns success without setting the
    output min,max parameters.  So return an -ENOTSUPP error.
    
    Fixes: e5ef784b1e17 ("drm/amd/powerplay: revise calling chain on retrieving frequency range")
    Signed-off-by: Tom Rix <trix@xxxxxxxxxx>
    Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c b/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
index d93d28c1af95..b51368fa3025 100644
--- a/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
+++ b/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
@@ -138,7 +138,7 @@ int smu_get_dpm_freq_range(struct smu_context *smu,
 			   uint32_t *min,
 			   uint32_t *max)
 {
-	int ret = 0;
+	int ret = -ENOTSUPP;
 
 	if (!min && !max)
 		return -EINVAL;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux