lkml.org 
[lkml]   [2022]   [Aug]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH] drm: Fix repeated word in comments
On Fri, Aug 26, 2022 at 10:03 AM Jules Maselbas <jmaselbas@kalray.eu> wrote:
>
> Remove redundant words `the` and `this`.
>
> CC: David Airlie <airlied@linux.ie>
> CC: Maxime Ripard <mripard@kernel.org>
> CC: Thomas Zimmermann <tzimmermann@suse.de>
> CC: amd-gfx@lists.freedesktop.org
> CC: dri-devel@lists.freedesktop.org
> Signed-off-by: Jules Maselbas <jmaselbas@kalray.eu>

Please split this up per driver.

Thanks!

Alex

> ---
> .../gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_arcturus.h | 2 +-
> .../gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_navi10.h | 2 +-
> drivers/gpu/drm/display/drm_dp_helper.c | 2 +-
> drivers/gpu/drm/drm_panel_orientation_quirks.c | 2 +-
> drivers/gpu/drm/i915/gvt/scheduler.c | 2 +-
> drivers/gpu/drm/i915/i915_irq.c | 2 +-
> drivers/gpu/drm/panel/panel-novatek-nt35510.c | 2 +-
> 7 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_arcturus.h b/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_arcturus.h
> index 43d43d6addc0..4164da83380f 100644
> --- a/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_arcturus.h
> +++ b/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_arcturus.h
> @@ -486,7 +486,7 @@ typedef struct {
> uint16_t Tvr_socLimit; // Celcius
> uint32_t FitLimit; // Failures in time (failures per million parts over the defined lifetime)
>
> - uint16_t PpmPowerLimit; // Switch this this power limit when temperature is above PpmTempThreshold
> + uint16_t PpmPowerLimit; // Switch this power limit when temperature is above PpmTempThreshold
> uint16_t PpmTemperatureThreshold;
>
> // SECTION: Throttler settings
> diff --git a/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_navi10.h b/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_navi10.h
> index 04752ade1016..ba7c68a20425 100644
> --- a/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_navi10.h
> +++ b/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/smu11_driver_if_navi10.h
> @@ -544,7 +544,7 @@ typedef struct {
> uint16_t TplxLimit; // Celcius
> uint32_t FitLimit; // Failures in time (failures per million parts over the defined lifetime)
>
> - uint16_t PpmPowerLimit; // Switch this this power limit when temperature is above PpmTempThreshold
> + uint16_t PpmPowerLimit; // Switch this power limit when temperature is above PpmTempThreshold
> uint16_t PpmTemperatureThreshold;
>
> // SECTION: Throttler settings
> diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
> index e5bab236b3ae..32b295003f49 100644
> --- a/drivers/gpu/drm/display/drm_dp_helper.c
> +++ b/drivers/gpu/drm/display/drm_dp_helper.c
> @@ -1597,7 +1597,7 @@ static int drm_dp_aux_reply_duration(const struct drm_dp_aux_msg *msg)
>
> /*
> * Calculate the length of the i2c transfer in usec, assuming
> - * the i2c bus speed is as specified. Gives the the "worst"
> + * the i2c bus speed is as specified. Gives the "worst"
> * case estimate, ie. successful while as long as possible.
> * Doesn't account the "MOT" bit, and instead assumes each
> * message includes a START, ADDRESS and STOP. Neither does it
> diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c
> index fc1728d46ac2..dde2f4c4c6cb 100644
> --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c
> +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c
> @@ -349,7 +349,7 @@ static const struct dmi_system_id orientation_data[] = {
> * resolution expected by the quirk-table entry.
> *
> * Note this function is also used outside of the drm-subsys, by for example
> - * the efifb code. Because of this this function gets compiled into its own
> + * the efifb code. Because of this function gets compiled into its own
> * kernel-module when built as a module.
> *
> * Returns:
> diff --git a/drivers/gpu/drm/i915/gvt/scheduler.c b/drivers/gpu/drm/i915/gvt/scheduler.c
> index d6fe94cd0fdb..7670ae4dd8fa 100644
> --- a/drivers/gpu/drm/i915/gvt/scheduler.c
> +++ b/drivers/gpu/drm/i915/gvt/scheduler.c
> @@ -193,7 +193,7 @@ static int populate_shadow_context(struct intel_vgpu_workload *workload)
> workload->ring_context_gpa);
>
> /* only need to ensure this context is not pinned/unpinned during the
> - * period from last submission to this this submission.
> + * period from last submission to this submission.
> * Upon reaching this function, the currently submitted context is not
> * supposed to get unpinned. If a misbehaving guest driver ever does
> * this, it would corrupt itself.
> diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
> index 73cebc6aa650..783a6ca41a61 100644
> --- a/drivers/gpu/drm/i915/i915_irq.c
> +++ b/drivers/gpu/drm/i915/i915_irq.c
> @@ -65,7 +65,7 @@
>
> /*
> * Interrupt statistic for PMU. Increments the counter only if the
> - * interrupt originated from the the GPU so interrupts from a device which
> + * interrupt originated from the GPU so interrupts from a device which
> * shares the interrupt line are not accounted.
> */
> static inline void pmu_irq_stats(struct drm_i915_private *i915,
> diff --git a/drivers/gpu/drm/panel/panel-novatek-nt35510.c b/drivers/gpu/drm/panel/panel-novatek-nt35510.c
> index 40ea41b0a5dd..4085822f619a 100644
> --- a/drivers/gpu/drm/panel/panel-novatek-nt35510.c
> +++ b/drivers/gpu/drm/panel/panel-novatek-nt35510.c
> @@ -231,7 +231,7 @@ struct nt35510_config {
> * bits 0..2 in the lower nibble controls HCK, the booster clock
> * frequency, the values are the same as for PCK in @bt1ctr.
> * bits 4..5 in the upper nibble controls BTH, the boosting
> - * amplification for the the step-up circuit.
> + * amplification for the step-up circuit.
> * 0 = AVDD + VDDB
> * 1 = AVDD - AVEE
> * 2 = AVDD - AVEE + VDDB
> --
> 2.17.1
>

\
 
 \ /
  Last update: 2022-08-26 22:37    [W:0.051 / U:0.248 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site