All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdkfd: Fix ASIC name typos
@ 2022-01-11 17:31 Kent Russell
  2022-01-11 17:59 ` Felix Kuehling
  2022-01-12  1:48 ` Chen, Guchun
  0 siblings, 2 replies; 3+ messages in thread
From: Kent Russell @ 2022-01-11 17:31 UTC (permalink / raw)
  To: amd-gfx; +Cc: Kent Russell

Three misspelled ASICs in comments here, so fix the spelling

Signed-off-by: Kent Russell <kent.russell@amd.com>
---
 drivers/gpu/drm/amd/amdkfd/kfd_device.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device.c b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
index 127d41d0e4f0..2b65d0acae2c 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_device.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
@@ -68,20 +68,20 @@ static void kfd_device_info_set_sdma_queue_num(struct kfd_dev *kfd)
 		case IP_VERSION(4, 0, 1):/* VEGA12 */
 		case IP_VERSION(4, 1, 0):/* RAVEN */
 		case IP_VERSION(4, 1, 1):/* RAVEN */
-		case IP_VERSION(4, 1, 2):/* RENIOR */
+		case IP_VERSION(4, 1, 2):/* RENOIR */
 		case IP_VERSION(5, 2, 1):/* VANGOGH */
 		case IP_VERSION(5, 2, 3):/* YELLOW_CARP */
 			kfd->device_info.num_sdma_queues_per_engine = 2;
 			break;
 		case IP_VERSION(4, 2, 0):/* VEGA20 */
-		case IP_VERSION(4, 2, 2):/* ARCTUTUS */
+		case IP_VERSION(4, 2, 2):/* ARCTURUS */
 		case IP_VERSION(4, 4, 0):/* ALDEBARAN */
 		case IP_VERSION(5, 0, 0):/* NAVI10 */
 		case IP_VERSION(5, 0, 1):/* CYAN_SKILLFISH */
 		case IP_VERSION(5, 0, 2):/* NAVI14 */
 		case IP_VERSION(5, 0, 5):/* NAVI12 */
 		case IP_VERSION(5, 2, 0):/* SIENNA_CICHLID */
-		case IP_VERSION(5, 2, 2):/* NAVY_FLOUDER */
+		case IP_VERSION(5, 2, 2):/* NAVY_FLOUNDER */
 		case IP_VERSION(5, 2, 4):/* DIMGREY_CAVEFISH */
 		case IP_VERSION(5, 2, 5):/* BEIGE_GOBY */
 			kfd->device_info.num_sdma_queues_per_engine = 8;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] drm/amdkfd: Fix ASIC name typos
  2022-01-11 17:31 [PATCH] drm/amdkfd: Fix ASIC name typos Kent Russell
@ 2022-01-11 17:59 ` Felix Kuehling
  2022-01-12  1:48 ` Chen, Guchun
  1 sibling, 0 replies; 3+ messages in thread
From: Felix Kuehling @ 2022-01-11 17:59 UTC (permalink / raw)
  To: Kent Russell, amd-gfx

Am 2022-01-11 um 12:31 p.m. schrieb Kent Russell:
> Three misspelled ASICs in comments here, so fix the spelling
>
> Signed-off-by: Kent Russell <kent.russell@amd.com>

Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>


> ---
>  drivers/gpu/drm/amd/amdkfd/kfd_device.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device.c b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
> index 127d41d0e4f0..2b65d0acae2c 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_device.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
> @@ -68,20 +68,20 @@ static void kfd_device_info_set_sdma_queue_num(struct kfd_dev *kfd)
>  		case IP_VERSION(4, 0, 1):/* VEGA12 */
>  		case IP_VERSION(4, 1, 0):/* RAVEN */
>  		case IP_VERSION(4, 1, 1):/* RAVEN */
> -		case IP_VERSION(4, 1, 2):/* RENIOR */
> +		case IP_VERSION(4, 1, 2):/* RENOIR */
>  		case IP_VERSION(5, 2, 1):/* VANGOGH */
>  		case IP_VERSION(5, 2, 3):/* YELLOW_CARP */
>  			kfd->device_info.num_sdma_queues_per_engine = 2;
>  			break;
>  		case IP_VERSION(4, 2, 0):/* VEGA20 */
> -		case IP_VERSION(4, 2, 2):/* ARCTUTUS */
> +		case IP_VERSION(4, 2, 2):/* ARCTURUS */
>  		case IP_VERSION(4, 4, 0):/* ALDEBARAN */
>  		case IP_VERSION(5, 0, 0):/* NAVI10 */
>  		case IP_VERSION(5, 0, 1):/* CYAN_SKILLFISH */
>  		case IP_VERSION(5, 0, 2):/* NAVI14 */
>  		case IP_VERSION(5, 0, 5):/* NAVI12 */
>  		case IP_VERSION(5, 2, 0):/* SIENNA_CICHLID */
> -		case IP_VERSION(5, 2, 2):/* NAVY_FLOUDER */
> +		case IP_VERSION(5, 2, 2):/* NAVY_FLOUNDER */
>  		case IP_VERSION(5, 2, 4):/* DIMGREY_CAVEFISH */
>  		case IP_VERSION(5, 2, 5):/* BEIGE_GOBY */
>  			kfd->device_info.num_sdma_queues_per_engine = 8;

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] drm/amdkfd: Fix ASIC name typos
  2022-01-11 17:31 [PATCH] drm/amdkfd: Fix ASIC name typos Kent Russell
  2022-01-11 17:59 ` Felix Kuehling
@ 2022-01-12  1:48 ` Chen, Guchun
  1 sibling, 0 replies; 3+ messages in thread
From: Chen, Guchun @ 2022-01-12  1:48 UTC (permalink / raw)
  To: Russell, Kent, amd-gfx; +Cc: Russell, Kent

[Public]

Reviewed-by: Guchun Chen <guchun.chen@amd.com>

Regards,
Guchun

-----Original Message-----
From: amd-gfx <amd-gfx-bounces@lists.freedesktop.org> On Behalf Of Kent Russell
Sent: Wednesday, January 12, 2022 1:31 AM
To: amd-gfx@lists.freedesktop.org
Cc: Russell, Kent <Kent.Russell@amd.com>
Subject: [PATCH] drm/amdkfd: Fix ASIC name typos

Three misspelled ASICs in comments here, so fix the spelling

Signed-off-by: Kent Russell <kent.russell@amd.com>
---
 drivers/gpu/drm/amd/amdkfd/kfd_device.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device.c b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
index 127d41d0e4f0..2b65d0acae2c 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_device.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
@@ -68,20 +68,20 @@ static void kfd_device_info_set_sdma_queue_num(struct kfd_dev *kfd)
 		case IP_VERSION(4, 0, 1):/* VEGA12 */
 		case IP_VERSION(4, 1, 0):/* RAVEN */
 		case IP_VERSION(4, 1, 1):/* RAVEN */
-		case IP_VERSION(4, 1, 2):/* RENIOR */
+		case IP_VERSION(4, 1, 2):/* RENOIR */
 		case IP_VERSION(5, 2, 1):/* VANGOGH */
 		case IP_VERSION(5, 2, 3):/* YELLOW_CARP */
 			kfd->device_info.num_sdma_queues_per_engine = 2;
 			break;
 		case IP_VERSION(4, 2, 0):/* VEGA20 */
-		case IP_VERSION(4, 2, 2):/* ARCTUTUS */
+		case IP_VERSION(4, 2, 2):/* ARCTURUS */
 		case IP_VERSION(4, 4, 0):/* ALDEBARAN */
 		case IP_VERSION(5, 0, 0):/* NAVI10 */
 		case IP_VERSION(5, 0, 1):/* CYAN_SKILLFISH */
 		case IP_VERSION(5, 0, 2):/* NAVI14 */
 		case IP_VERSION(5, 0, 5):/* NAVI12 */
 		case IP_VERSION(5, 2, 0):/* SIENNA_CICHLID */
-		case IP_VERSION(5, 2, 2):/* NAVY_FLOUDER */
+		case IP_VERSION(5, 2, 2):/* NAVY_FLOUNDER */
 		case IP_VERSION(5, 2, 4):/* DIMGREY_CAVEFISH */
 		case IP_VERSION(5, 2, 5):/* BEIGE_GOBY */
 			kfd->device_info.num_sdma_queues_per_engine = 8;
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-12  1:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-11 17:31 [PATCH] drm/amdkfd: Fix ASIC name typos Kent Russell
2022-01-11 17:59 ` Felix Kuehling
2022-01-12  1:48 ` Chen, Guchun

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.