mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] drm: fix typos in comments
@ 2026-09-04 12:03 Hemanth Selam
  0 siblings, 0 replies; 2+ messages in thread
From: Hemanth Selam @ 2026-09-04 12:03 UTC (permalink / raw)
  To: Lucas Stach, Russell King, Christian Gmeiner, David Airlie,
	Simona Vetter
  Cc: linux-kernel, etnaviv, dri-devel

Fix typos in comments, reported by scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt.  Only touches comments, no code
changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
 drivers/gpu/drm/etnaviv/etnaviv_gpu.c | 2 +-
 include/drm/display/drm_dp_helper.h   | 2 +-
 include/drm/display/drm_dsc.h         | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/etnaviv/etnaviv_gpu.c b/drivers/gpu/drm/etnaviv/etnaviv_gpu.c
index 5c23182f4d33..2aef96fdbd10 100644
--- a/drivers/gpu/drm/etnaviv/etnaviv_gpu.c
+++ b/drivers/gpu/drm/etnaviv/etnaviv_gpu.c
@@ -1971,7 +1971,7 @@ static int etnaviv_gpu_platform_probe(struct platform_device *pdev)
 
 	/*
 	 * We treat the device as initially suspended.  The runtime PM
-	 * autosuspend delay is rather arbitary: no measurements have
+	 * autosuspend delay is rather arbitrary: no measurements have
 	 * yet been performed to determine an appropriate value.
 	 */
 	pm_runtime_use_autosuspend(dev);
diff --git a/include/drm/display/drm_dp_helper.h b/include/drm/display/drm_dp_helper.h
index ab16c1be3900..34bdd599383f 100644
--- a/include/drm/display/drm_dp_helper.h
+++ b/include/drm/display/drm_dp_helper.h
@@ -816,7 +816,7 @@ enum drm_dp_quirk {
 	 * @DP_DPCD_QUIRK_CONSTANT_N:
 	 *
 	 * The device requires main link attributes Mvid and Nvid to be limited
-	 * to 16 bits. So will give a constant value (0x8000) for compatability.
+	 * to 16 bits. So will give a constant value (0x8000) for compatibility.
 	 */
 	DP_DPCD_QUIRK_CONSTANT_N,
 	/**
diff --git a/include/drm/display/drm_dsc.h b/include/drm/display/drm_dsc.h
index bbbe7438473d..0682071d881d 100644
--- a/include/drm/display/drm_dsc.h
+++ b/include/drm/display/drm_dsc.h
@@ -322,7 +322,7 @@ struct drm_dsc_picture_parameter_set {
 	 * active.
 	 * PPS4[5] - blobk_pred_enable: Indicates if BP is used to code any
 	 * groups in picture
-	 * PPS4[7:6] - Reseved bits
+	 * PPS4[7:6] - Reserved bits
 	 */
 	u8 pps_4;
 	/**
-- 
2.48.1


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

* [PATCH] drm: fix typos in comments
@ 2026-09-04 12:07 Hemanth Selam
  0 siblings, 0 replies; 2+ messages in thread
From: Hemanth Selam @ 2026-09-04 12:07 UTC (permalink / raw)
  To: Thierry Reding, Mikko Perttunen, David Airlie, Simona Vetter,
	Jonathan Hunter
  Cc: linux-kernel, dri-devel, linux-tegra

Fix typos in comments, reported by scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt.  Only touches comments, no code
changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
 drivers/gpu/drm/tegra/hdmi.c    | 2 +-
 drivers/gpu/host1x/hw/intr_hw.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/tegra/hdmi.c b/drivers/gpu/drm/tegra/hdmi.c
index 0d2c0ab0a63e..d69c0153739f 100644
--- a/drivers/gpu/drm/tegra/hdmi.c
+++ b/drivers/gpu/drm/tegra/hdmi.c
@@ -520,7 +520,7 @@ static int tegra_hdmi_setup_audio(struct tegra_hdmi *hdmi)
 
 	/*
 	 * Tegra30 and later use a slightly modified version of the register
-	 * layout to accomodate for changes related to supporting HDA as the
+	 * layout to accommodate for changes related to supporting HDA as the
 	 * audio input source for HDMI. The source select field has moved to
 	 * the SOR_AUDIO_CNTRL0 register, but the error tolerance and frames
 	 * per block fields remain in the AUDIO_CNTRL0 register.
diff --git a/drivers/gpu/host1x/hw/intr_hw.c b/drivers/gpu/host1x/hw/intr_hw.c
index bd5b5ef62f35..afb68e47ecf6 100644
--- a/drivers/gpu/host1x/hw/intr_hw.c
+++ b/drivers/gpu/host1x/hw/intr_hw.c
@@ -93,7 +93,7 @@ host1x_intr_init_host_sync(struct host1x *host, u32 cpm)
 	host1x_sync_writel(host, 0, HOST1X_SYNC_IP_BUSY_TIMEOUT);
 
 	/*
-	 * increase the auto-ack timout to the maximum value. 2d will hang
+	 * increase the auto-ack timeout to the maximum value. 2d will hang
 	 * otherwise on Tegra2.
 	 */
 	host1x_sync_writel(host, 0xff, HOST1X_SYNC_CTXSW_TIMEOUT_CFG);
-- 
2.48.1


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

end of thread, other threads:[~2026-09-04 12:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-04 12:03 [PATCH] drm: fix typos in comments Hemanth Selam
2026-09-04 12:07 Hemanth Selam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®