All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Deucher <alexdeucher@gmail.com>
To: Oak Zeng <Oak.Zeng@amd.com>
Cc: Feifei Xu <feifei.xu@amd.com>,
	"Kuehling, Felix" <Felix.Kuehling@amd.com>,
	Leo Liu <leo.liu@amd.com>,
	amd-gfx list <amd-gfx@lists.freedesktop.org>,
	Hawking Zhang <hawking.zhang@amd.com>
Subject: Re: [PATCH 3/3] drm/amdgpu: Change a few function names
Date: Wed, 14 Jul 2021 11:50:32 -0400	[thread overview]
Message-ID: <CADnq5_NqnYEbxXJmv55LsVtvq8czjwO=ZQ8KqSM3tizeAvJ5qw@mail.gmail.com> (raw)
In-Reply-To: <1626276343-3552-4-git-send-email-Oak.Zeng@amd.com>

On Wed, Jul 14, 2021 at 11:25 AM Oak Zeng <Oak.Zeng@amd.com> wrote:
>
> Function name "psp_np_fw_load" is not proper as people don't
> know _np_fw_ means "non psp firmware". Change the function
> name to psp_load_non_psp_fw for better understanding. Same
> thing for function psp_execute_np_fw_load.
>
> Signed-off-by: Oak Zeng <Oak.Zeng@amd.com>

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>

> ---
>  drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
> index d9ddb2c..8d1e2b2 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
> @@ -2351,7 +2351,7 @@ static int psp_prep_load_ip_fw_cmd_buf(struct amdgpu_firmware_info *ucode,
>         return ret;
>  }
>
> -static int psp_execute_np_fw_load(struct psp_context *psp,
> +static int psp_execute_non_psp_fw_load(struct psp_context *psp,
>                                   struct amdgpu_firmware_info *ucode)
>  {
>         int ret = 0;
> @@ -2387,7 +2387,7 @@ static int psp_load_smu_fw(struct psp_context *psp)
>                 }
>         }
>
> -       ret = psp_execute_np_fw_load(psp, ucode);
> +       ret = psp_execute_non_psp_fw_load(psp, ucode);
>
>         if (ret)
>                 DRM_ERROR("PSP load smu failed!\n");
> @@ -2442,14 +2442,14 @@ int psp_load_fw_list(struct psp_context *psp,
>         for (i = 0; i < ucode_count; ++i) {
>                 ucode = ucode_list[i];
>                 psp_print_fw_hdr(psp, ucode);
> -               ret = psp_execute_np_fw_load(psp, ucode);
> +               ret = psp_execute_non_psp_fw_load(psp, ucode);
>                 if (ret)
>                         return ret;
>         }
>         return ret;
>  }
>
> -static int psp_np_fw_load(struct psp_context *psp)
> +static int psp_load_non_psp_fw(struct psp_context *psp)
>  {
>         int i, ret;
>         struct amdgpu_firmware_info *ucode;
> @@ -2488,7 +2488,7 @@ static int psp_np_fw_load(struct psp_context *psp)
>
>                 psp_print_fw_hdr(psp, ucode);
>
> -               ret = psp_execute_np_fw_load(psp, ucode);
> +               ret = psp_execute_non_psp_fw_load(psp, ucode);
>                 if (ret)
>                         return ret;
>
> @@ -2565,7 +2565,7 @@ static int psp_load_fw(struct amdgpu_device *adev)
>         if (ret)
>                 goto failed;
>
> -       ret = psp_np_fw_load(psp);
> +       ret = psp_load_non_psp_fw(psp);
>         if (ret)
>                 goto failed;
>
> @@ -2765,7 +2765,7 @@ static int psp_resume(void *handle)
>         if (ret)
>                 goto failed;
>
> -       ret = psp_np_fw_load(psp);
> +       ret = psp_load_non_psp_fw(psp);
>         if (ret)
>                 goto failed;
>
> @@ -2863,7 +2863,7 @@ int psp_update_vcn_sram(struct amdgpu_device *adev, int inst_idx,
>         ucode.mc_addr = cmd_gpu_addr;
>         ucode.ucode_size = cmd_size;
>
> -       return psp_execute_np_fw_load(&adev->psp, &ucode);
> +       return psp_execute_non_psp_fw_load(&adev->psp, &ucode);
>  }
>
>  int psp_ring_cmd_submit(struct psp_context *psp,
> --
> 2.7.4
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

      reply	other threads:[~2021-07-14 15:50 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-14 15:25 [PATCH 0/3] MISC fixes Oak Zeng
2021-07-14 15:25 ` [PATCH 1/3] drm/amdkfd: Disallow debugfs to hang hws when GPU is resetting Oak Zeng
2021-07-14 16:04   ` Felix Kuehling
2021-07-14 15:25 ` [PATCH 2/3] drm/amdgpu: Fix a printing message Oak Zeng
2021-07-14 15:28   ` Christian König
2021-07-14 15:48   ` Alex Deucher
2021-07-15  2:51     ` Chen, Jiansong (Simon)
2021-07-15  2:54       ` Deucher, Alexander
2021-07-15  2:56         ` Chen, Jiansong (Simon)
2021-07-14 15:25 ` [PATCH 3/3] drm/amdgpu: Change a few function names Oak Zeng
2021-07-14 15:50   ` Alex Deucher [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='CADnq5_NqnYEbxXJmv55LsVtvq8czjwO=ZQ8KqSM3tizeAvJ5qw@mail.gmail.com' \
    --to=alexdeucher@gmail.com \
    --cc=Felix.Kuehling@amd.com \
    --cc=Oak.Zeng@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=feifei.xu@amd.com \
    --cc=hawking.zhang@amd.com \
    --cc=leo.liu@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.