From nobody Fri Apr 10 12:35:32 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A2D42C32772 for ; Tue, 23 Aug 2022 14:45:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240057AbiHWOpK (ORCPT ); Tue, 23 Aug 2022 10:45:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45520 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241152AbiHWOof (ORCPT ); Tue, 23 Aug 2022 10:44:35 -0400 X-Greylist: delayed 131 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Tue, 23 Aug 2022 05:05:28 PDT Received: from bg5.exmail.qq.com (bg4.exmail.qq.com [43.154.221.58]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5969A13D75C for ; Tue, 23 Aug 2022 05:05:28 -0700 (PDT) X-QQ-mid: bizesmtp90t1661256243te08ayk5 Received: from localhost.localdomain ( [182.148.14.124]) by bizesmtp.qq.com (ESMTP) with id ; Tue, 23 Aug 2022 20:04:01 +0800 (CST) X-QQ-SSF: 01000000002000C0D000B00A0000000 X-QQ-FEAT: QityeSR92A109gpJ54mVbw2f3kU8xWUS9YrEt9YHoZj/m8QuegRSwsytsJt9G PiugPdiJhCd0UDm1b2PKKLD0ObiV5B0qwL/4n+Czpt8xToPIzw/G2SlSXzyG+u+KmNBzEke yHZfV1jDW0w+Oimk6oaReqX46/20Hql4Si65eah/nZDLAWUI2kfJbkkJ8EAwpbWrS18ZuWB Zp9MmeHD1N8jNsPYrLAAa6OLmNrLTjeUiIWGHDZJt8do8v5gpFdsOc9am1YyhlvKRX24lYk aP7oA+vpdAnSGrKM6IrZzQzHUF5SIWoLuUN0mcSEHjM47BOzoumQtseN2HAZSRO2xRGW7LG khqU3YE9DG4pxJ55Ut2zVAVyRYYbxyZLQZngenAUUyxOKzyMqFZcKcJepiLtR5mHdlB+Fzl X-QQ-GoodBg: 0 From: Jilin Yuan To: maarten.lankhorst@linux.intel.com, mripard@kernel.org, tzimmermann@suse.de, airlied@linux.ie, daniel@ffwll.ch Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Jilin Yuan Subject: [PATCH] gpu/drm: fix repeated words in comments Date: Tue, 23 Aug 2022 20:03:55 +0800 Message-Id: <20220823120355.64996-1-yuanjilin@cdjrlc.com> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybglogicsvr:qybglogicsvr4 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Delete the redundant word 'the'. Delete the redundant word 'this'. Signed-off-by: Jilin Yuan --- drivers/gpu/drm/drm_panel_orientation_quirks.c | 4 ++-- drivers/gpu/drm/drm_prime.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/d= rm/drm_panel_orientation_quirks.c index 4e853acfd1e8..63f002d5143a 100644 --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c @@ -187,7 +187,7 @@ static const struct dmi_system_id orientation_data[] = =3D { }, .driver_data =3D (void *)&lcd800x1280_rightside_up, }, { /* - * GPD Pocket, note that the the DMI data is less generic then + * GPD Pocket, note that the DMI data is less generic then * it seems, devices with a board-vendor of "AMI Corporation" * are quite rare, as are devices which have both board- *and* * product-id set to "Default String" @@ -328,7 +328,7 @@ static const struct dmi_system_id orientation_data[] = =3D { * resolution expected by the quirk-table entry. * * Note this function is also used outside of the drm-subsys, by for examp= le - * 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/drm_prime.c b/drivers/gpu/drm/drm_prime.c index e3f09f18110c..a3f180653b8b 100644 --- a/drivers/gpu/drm/drm_prime.c +++ b/drivers/gpu/drm/drm_prime.c @@ -839,7 +839,7 @@ EXPORT_SYMBOL(drm_prime_pages_to_sg); * @sgt: sg_table describing the buffer to check * * This helper calculates the contiguous size in the DMA address space - * of the the buffer described by the provided sg_table. + * of the buffer described by the provided sg_table. * * This is useful for implementing * &drm_gem_object_funcs.gem_prime_import_sg_table. --=20 2.36.1