[PATCH] drm/amd/display: Unneeded semicolon

2022-08-13 Thread min tang
There is no semicolon after '}' in line 510.

Signed-off-by: min tang 
---
 drivers/gpu/drm/amd/display/dc/clk_mgr/dcn315/dcn315_clk_mgr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn315/dcn315_clk_mgr.c 
b/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn315/dcn315_clk_mgr.c
index 27501b735a9c..c87cf8771c6d 100644
--- a/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn315/dcn315_clk_mgr.c
+++ b/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn315/dcn315_clk_mgr.c
@@ -505,7 +505,7 @@ static void dcn315_clk_mgr_helper_populate_bw_params(
bw_params->clk_table.entries[i].dispclk_mhz = 
clock_table->DispClocks[i];
bw_params->clk_table.entries[i].dppclk_mhz = 
clock_table->DppClocks[i];
bw_params->clk_table.entries[i].wck_ratio = 1;
-   };
+   }
 
/* Make sure to include at least one entry and highest pstate */
if (max_pstate != min_pstate || i == 0) {
-- 
2.17.1



[PATCH] drm/i915/gt: Unneeded semicolon

2022-08-13 Thread min tang
There is no semicolon after '}' in line 648.

Signed-off-by: min tang 
---
 drivers/gpu/drm/i915/gt/intel_migrate.c | 2 +-
 tools/power/x86/intel-speed-select/hfi-events.c | 2 +-
 tools/testing/selftests/timers/nanosleep.c  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/gt/intel_migrate.c 
b/drivers/gpu/drm/i915/gt/intel_migrate.c
index 2c35324b5f68..a69b244f14d0 100644
--- a/drivers/gpu/drm/i915/gt/intel_migrate.c
+++ b/drivers/gpu/drm/i915/gt/intel_migrate.c
@@ -645,7 +645,7 @@ static int scatter_list_length(struct scatterlist *sg)
while (sg && sg_dma_len(sg)) {
len += sg_dma_len(sg);
sg = sg_next(sg);
-   };
+   }
 
return len;
 }
diff --git a/tools/power/x86/intel-speed-select/hfi-events.c 
b/tools/power/x86/intel-speed-select/hfi-events.c
index 761375062505..f0ed69721308 100644
--- a/tools/power/x86/intel-speed-select/hfi-events.c
+++ b/tools/power/x86/intel-speed-select/hfi-events.c
@@ -144,7 +144,7 @@ static int family_handler(struct nl_msg *msg, void *arg)
continue;
res->id = nla_get_u32(tb2[CTRL_ATTR_MCAST_GRP_ID]);
break;
-   };
+   }
 
return 0;
 }
diff --git a/tools/testing/selftests/timers/nanosleep.c 
b/tools/testing/selftests/timers/nanosleep.c
index 71b5441c2fd9..433a09676aeb 100644
--- a/tools/testing/selftests/timers/nanosleep.c
+++ b/tools/testing/selftests/timers/nanosleep.c
@@ -72,7 +72,7 @@ char *clockstring(int clockid)
return "CLOCK_BOOTTIME_ALARM";
case CLOCK_TAI:
return "CLOCK_TAI";
-   };
+   }
return "UNKNOWN_CLOCKID";
 }
 
-- 
2.17.1



[PATCH] drm/amd/display: Fix comment typo

2022-08-13 Thread min tang
The double `aligned' is duplicated in line 1070, remove one.

Signed-off-by: min tang 
---
 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c 
b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c
index b1671b00ce40..0844b3eeb291 100644
--- a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c
+++ b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c
@@ -1066,7 +1066,7 @@ static void optc1_set_test_pattern(
src_color[index] >> (src_bpc - dst_bpc);
/* CRTC_TEST_PATTERN_DATA has 16 bits,
 * lowest 6 are hardwired to ZERO
-* color bits should be left aligned aligned to MSB
+* color bits should be left aligned to MSB
 * XX00 for 10 bit,
 *  for 8 bit and XX00 for 6
 */
-- 
2.17.1



[PATCH] drm/vmwgfx: Fix comment typo

2022-08-12 Thread min tang
The double `to' is duplicated in line 384, remove one,The double `to' is 
duplicated in line 412, remove one.

Signed-off-by: min tang 
---
 drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c 
b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c
index d49de4905efa..82b9d33ecc84 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c
@@ -381,7 +381,7 @@ static int vmw_execbuf_res_noctx_val_add(struct 
vmw_sw_context *sw_context,
 }
 
 /**
- * vmw_view_res_val_add - Add a view and the surface it's pointing to to the
+ * vmw_view_res_val_add - Add a view and the surface it's pointing to the
  * validation list
  *
  * @sw_context: The software context holding the validation list.
@@ -409,7 +409,7 @@ static int vmw_view_res_val_add(struct vmw_sw_context 
*sw_context,
 
 /**
  * vmw_view_id_val_add - Look up a view and add it and the surface it's 
pointing
- * to to the validation list.
+ * to the validation list.
  *
  * @sw_context: The software context holding the validation list.
  * @view_type: The view type to look up.
-- 
2.17.1



[PATCH] drm/vmwgfx: Fix comment typo

2022-08-12 Thread min tang
The double `should' is duplicated in line 72, remove one.

Signed-off-by: min tang 
---
 drivers/gpu/drm/vmwgfx/vmwgfx_kms.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.h 
b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.h
index 1d1c8b82c898..7c04e8150fe2 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.h
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.h
@@ -69,7 +69,7 @@ struct vmw_du_update_plane {
 *
 * Some surface resource or buffer object need some extra cmd submission
 * like update GB image for proxy surface and define a GMRFB for screen
-* object. That should should be done here as this callback will be
+* object. That should be done here as this callback will be
 * called after FIFO allocation with the address of command buufer.
 *
 * This callback is optional.
-- 
2.17.1




[PATCH] drm/ttm: Fix comment typo

2022-08-12 Thread min tang
The double `sure' is duplicated in line 454, remove one.

Signed-off-by: min tang 
---
 drivers/gpu/drm/vmwgfx/vmwgfx_page_dirty.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_page_dirty.c 
b/drivers/gpu/drm/vmwgfx/vmwgfx_page_dirty.c
index 7bc99b1279f7..2e9349e01e8e 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_page_dirty.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_page_dirty.c
@@ -450,7 +450,7 @@ vm_fault_t vmw_bo_vm_fault(struct vm_fault *vmf)
}
 
/*
-* If we don't track dirty using the MKWRITE method, make sure
+* If we don't track dirty using the MKWRITE method, make
 * sure the page protection is write-enabled so we don't get
 * a lot of unnecessary write faults.
 */
-- 
2.17.1



[PATCH] drm/i915: Fix comment typo

2022-08-12 Thread min tang
The double `for' is duplicated in line 2537, remove one.

Signed-off-by: min tang 
---
 drivers/gpu/drm/i915/i915_reg.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 9ccb67eec1bd..617a33e4bbb6 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -2534,7 +2534,7 @@
  * HDMI/DP bits are g4x+
  *
  * WARNING: Bspec for hpd status bits on gen4 seems to be completely confused.
- * Please check the detailed lore in the commit message for for experimental
+ * Please check the detailed lore in the commit message for experimental
  * evidence.
  */
 /* Bspec says GM45 should match G4X/VLV/CHV, but reality disagrees */
-- 
2.17.1



[PATCH] drm: Fix comment typo

2022-08-12 Thread min tang
The double `buffer' is duplicated in line 96, remove one.

Signed-off-by: min tang 
---
 drivers/gpu/drm/drm_vblank.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_vblank.c b/drivers/gpu/drm/drm_vblank.c
index 2ff31717a3de..25660c30bbbf 100644
--- a/drivers/gpu/drm/drm_vblank.c
+++ b/drivers/gpu/drm/drm_vblank.c
@@ -92,7 +92,7 @@
  * corrected timestamp.
  *
  * On a lot of display hardware, programming needs to take effect during the
- * vertical blanking period so that settings like gamma, the image buffer
+ * vertical blanking period so that settings like gamma, the image
  * buffer to be scanned out, etc. can safely be changed without showing
  * any visual artifacts on the screen. In some unforgiving hardware, some of
  * this programming has to both start and end in the same vblank. To help
-- 
2.17.1