All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdkfd: Fix indentation on switch statement
@ 2022-01-11 20:19 Graham Sider
  2022-01-11 20:21 ` Deucher, Alexander
  0 siblings, 1 reply; 2+ messages in thread
From: Graham Sider @ 2022-01-11 20:19 UTC (permalink / raw)
  To: amd-gfx; +Cc: Graham Sider

Cases should be same indentation as switch. Also fix string spanning
across multiple lines.

Signed-off-by: Graham Sider <Graham.Sider@amd.com>
---
 drivers/gpu/drm/amd/amdkfd/kfd_device.c | 55 ++++++++++++-------------
 1 file changed, 27 insertions(+), 28 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device.c b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
index 2b65d0acae2c..5a47f437b455 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_device.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
@@ -64,34 +64,33 @@ static void kfd_device_info_set_sdma_queue_num(struct kfd_dev *kfd)
 	uint32_t sdma_version = kfd->adev->ip_versions[SDMA0_HWIP][0];
 
 	switch (sdma_version) {
-		case IP_VERSION(4, 0, 0):/* VEGA10 */
-		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):/* 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):/* 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_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;
-			break;
-		default:
-			dev_warn(kfd_device,
-				"Default sdma queue per engine(8) is set due to "
-				"mismatch of sdma ip block(SDMA_HWIP:0x%x).\n",
-                                sdma_version);
-			kfd->device_info.num_sdma_queues_per_engine = 8;
+	case IP_VERSION(4, 0, 0):/* VEGA10 */
+	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):/* 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):/* 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_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;
+		break;
+	default:
+		dev_warn(kfd_device,
+			"Default sdma queue per engine(8) is set due to mismatch of sdma ip block(SDMA_HWIP:0x%x).\n",
+			sdma_version);
+		kfd->device_info.num_sdma_queues_per_engine = 8;
 	}
 }
 
-- 
2.25.1


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

* Re: [PATCH] drm/amdkfd: Fix indentation on switch statement
  2022-01-11 20:19 [PATCH] drm/amdkfd: Fix indentation on switch statement Graham Sider
@ 2022-01-11 20:21 ` Deucher, Alexander
  0 siblings, 0 replies; 2+ messages in thread
From: Deucher, Alexander @ 2022-01-11 20:21 UTC (permalink / raw)
  To: Sider, Graham, amd-gfx

[-- Attachment #1: Type: text/plain, Size: 4140 bytes --]

[AMD Official Use Only]

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
________________________________
From: amd-gfx <amd-gfx-bounces@lists.freedesktop.org> on behalf of Graham Sider <Graham.Sider@amd.com>
Sent: Tuesday, January 11, 2022 3:19 PM
To: amd-gfx@lists.freedesktop.org <amd-gfx@lists.freedesktop.org>
Cc: Sider, Graham <Graham.Sider@amd.com>
Subject: [PATCH] drm/amdkfd: Fix indentation on switch statement

Cases should be same indentation as switch. Also fix string spanning
across multiple lines.

Signed-off-by: Graham Sider <Graham.Sider@amd.com>
---
 drivers/gpu/drm/amd/amdkfd/kfd_device.c | 55 ++++++++++++-------------
 1 file changed, 27 insertions(+), 28 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device.c b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
index 2b65d0acae2c..5a47f437b455 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_device.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
@@ -64,34 +64,33 @@ static void kfd_device_info_set_sdma_queue_num(struct kfd_dev *kfd)
         uint32_t sdma_version = kfd->adev->ip_versions[SDMA0_HWIP][0];

         switch (sdma_version) {
-               case IP_VERSION(4, 0, 0):/* VEGA10 */
-               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):/* 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):/* 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_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;
-                       break;
-               default:
-                       dev_warn(kfd_device,
-                               "Default sdma queue per engine(8) is set due to "
-                               "mismatch of sdma ip block(SDMA_HWIP:0x%x).\n",
-                                sdma_version);
-                       kfd->device_info.num_sdma_queues_per_engine = 8;
+       case IP_VERSION(4, 0, 0):/* VEGA10 */
+       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):/* 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):/* 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_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;
+               break;
+       default:
+               dev_warn(kfd_device,
+                       "Default sdma queue per engine(8) is set due to mismatch of sdma ip block(SDMA_HWIP:0x%x).\n",
+                       sdma_version);
+               kfd->device_info.num_sdma_queues_per_engine = 8;
         }
 }

--
2.25.1


[-- Attachment #2: Type: text/html, Size: 9166 bytes --]

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

end of thread, other threads:[~2022-01-11 20:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-11 20:19 [PATCH] drm/amdkfd: Fix indentation on switch statement Graham Sider
2022-01-11 20:21 ` Deucher, Alexander

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.