AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Christian König" <christian.koenig@amd.com>
To: Bob Zhou <bob.zhou@amd.com>,
	amd-gfx@lists.freedesktop.org, Tim.Huang@amd.com,
	jesse.zhang@amd.com
Cc: alexander.deucher@amd.com
Subject: Re: [PATCH 1/2] drm/amdgpu: fix overflowed constant warning in mmhub_set_clockgating()
Date: Fri, 7 Jun 2024 13:38:47 +0200	[thread overview]
Message-ID: <b25adc15-5b7b-401b-ab21-63b3554ff341@amd.com> (raw)
In-Reply-To: <20240607083336.65752-1-bob.zhou@amd.com>

Am 07.06.24 um 10:33 schrieb Bob Zhou:
> To fix potential overflowed constant warning, modify the variables to u32
> for getting the return value of RREG32_SOC15().
>
> Signed-off-by: Bob Zhou <bob.zhou@amd.com>

Acked-by: Christian König <christian.koenig@amd.com>

> ---
>   drivers/gpu/drm/amd/amdgpu/mmhub_v1_7.c | 2 +-
>   drivers/gpu/drm/amd/amdgpu/mmhub_v2_0.c | 2 +-
>   drivers/gpu/drm/amd/amdgpu/mmhub_v3_3.c | 2 +-
>   drivers/gpu/drm/amd/amdgpu/mmhub_v9_4.c | 2 +-
>   4 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_7.c b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_7.c
> index 92432cd2c0c7..9689e2b5d4e5 100644
> --- a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_7.c
> +++ b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_7.c
> @@ -544,7 +544,7 @@ static int mmhub_v1_7_set_clockgating(struct amdgpu_device *adev,
>   
>   static void mmhub_v1_7_get_clockgating(struct amdgpu_device *adev, u64 *flags)
>   {
> -	int data, data1;
> +	u32 data, data1;
>   
>   	if (amdgpu_sriov_vf(adev))
>   		*flags = 0;
> diff --git a/drivers/gpu/drm/amd/amdgpu/mmhub_v2_0.c b/drivers/gpu/drm/amd/amdgpu/mmhub_v2_0.c
> index 02fd45261399..a0cc8e218ca1 100644
> --- a/drivers/gpu/drm/amd/amdgpu/mmhub_v2_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/mmhub_v2_0.c
> @@ -671,7 +671,7 @@ static int mmhub_v2_0_set_clockgating(struct amdgpu_device *adev,
>   
>   static void mmhub_v2_0_get_clockgating(struct amdgpu_device *adev, u64 *flags)
>   {
> -	int data, data1;
> +	u32 data, data1;
>   
>   	if (amdgpu_sriov_vf(adev))
>   		*flags = 0;
> diff --git a/drivers/gpu/drm/amd/amdgpu/mmhub_v3_3.c b/drivers/gpu/drm/amd/amdgpu/mmhub_v3_3.c
> index 8928f9160822..b4ce3375d3fd 100644
> --- a/drivers/gpu/drm/amd/amdgpu/mmhub_v3_3.c
> +++ b/drivers/gpu/drm/amd/amdgpu/mmhub_v3_3.c
> @@ -613,7 +613,7 @@ static int mmhub_v3_3_set_clockgating(struct amdgpu_device *adev,
>   
>   static void mmhub_v3_3_get_clockgating(struct amdgpu_device *adev, u64 *flags)
>   {
> -	int data;
> +	u32 data;
>   
>   	if (amdgpu_sriov_vf(adev))
>   		*flags = 0;
> diff --git a/drivers/gpu/drm/amd/amdgpu/mmhub_v9_4.c b/drivers/gpu/drm/amd/amdgpu/mmhub_v9_4.c
> index 1b7da4aff2b8..ff1b58e44689 100644
> --- a/drivers/gpu/drm/amd/amdgpu/mmhub_v9_4.c
> +++ b/drivers/gpu/drm/amd/amdgpu/mmhub_v9_4.c
> @@ -657,7 +657,7 @@ static int mmhub_v9_4_set_clockgating(struct amdgpu_device *adev,
>   
>   static void mmhub_v9_4_get_clockgating(struct amdgpu_device *adev, u64 *flags)
>   {
> -	int data, data1;
> +	u32 data, data1;
>   
>   	if (amdgpu_sriov_vf(adev))
>   		*flags = 0;


      parent reply	other threads:[~2024-06-07 11:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-07  8:33 [PATCH 1/2] drm/amdgpu: fix overflowed constant warning in mmhub_set_clockgating() Bob Zhou
2024-06-07  8:33 ` [PATCH 2/2] drm/amdgpu: fix dereferencing null pointer warning in ring_test_ib() Bob Zhou
2024-06-07 11:39   ` Christian König
2024-06-07 11:38 ` Christian König [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b25adc15-5b7b-401b-ab21-63b3554ff341@amd.com \
    --to=christian.koenig@amd.com \
    --cc=Tim.Huang@amd.com \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=bob.zhou@amd.com \
    --cc=jesse.zhang@amd.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox