From nobody Sun Feb 8 05:53:45 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 73B57C001DF for ; Wed, 2 Aug 2023 02:52:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231304AbjHBCwO (ORCPT ); Tue, 1 Aug 2023 22:52:14 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43386 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229772AbjHBCwM (ORCPT ); Tue, 1 Aug 2023 22:52:12 -0400 Received: from out28-106.mail.aliyun.com (out28-106.mail.aliyun.com [115.124.28.106]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E52A71FD6 for ; Tue, 1 Aug 2023 19:52:10 -0700 (PDT) X-Alimail-AntiSpam: AC=CONTINUE;BC=0.1871421|-1;CH=blue;DM=|OVERLOAD|false|;DS=CONTINUE|ham_alarm|0.114493-0.00247554-0.883031;FP=0|0|0|0|0|-1|-1|-1;HT=ay29a033018047212;MF=sunran001@208suo.com;NM=1;PH=DS;RN=5;RT=5;SR=0;TI=SMTPD_---.U6NOoqR_1690944723; Received: from localhost.localdomain(mailfrom:sunran001@208suo.com fp:SMTPD_---.U6NOoqR_1690944723) by smtp.aliyun-inc.com; Wed, 02 Aug 2023 10:52:05 +0800 From: Ran Sun To: alexander.deucher@amd.com Cc: amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Ran Sun Subject: [PATCH] drm/amd/display: Clean up errors in dce110_timing_generator.c Date: Wed, 2 Aug 2023 02:52:02 +0000 Message-Id: <20230802025202.10282-1-sunran001@208suo.com> X-Mailer: git-send-email 2.17.1 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Fix the following errors reported by checkpatch: ERROR: spaces required around that '=3D' (ctx:WxV) Signed-off-by: Ran Sun --- .../gpu/drm/amd/display/dc/dce110/dce110_timing_generator.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/display/dc/dce110/dce110_timing_generator.= c b/drivers/gpu/drm/amd/display/dc/dce110/dce110_timing_generator.c index 27cbb5b42c7e..6424e7f279dc 100644 --- a/drivers/gpu/drm/amd/display/dc/dce110/dce110_timing_generator.c +++ b/drivers/gpu/drm/amd/display/dc/dce110/dce110_timing_generator.c @@ -288,7 +288,7 @@ bool dce110_timing_generator_program_timing_generator( =20 uint32_t vsync_offset =3D dc_crtc_timing->v_border_bottom + dc_crtc_timing->v_front_porch; - uint32_t v_sync_start =3Ddc_crtc_timing->v_addressable + vsync_offset; + uint32_t v_sync_start =3D dc_crtc_timing->v_addressable + vsync_offset; =20 uint32_t hsync_offset =3D dc_crtc_timing->h_border_right + dc_crtc_timing->h_front_porch; @@ -603,7 +603,7 @@ void dce110_timing_generator_program_blanking( { uint32_t vsync_offset =3D timing->v_border_bottom + timing->v_front_porch; - uint32_t v_sync_start =3Dtiming->v_addressable + vsync_offset; + uint32_t v_sync_start =3D timing->v_addressable + vsync_offset; =20 uint32_t hsync_offset =3D timing->h_border_right + timing->h_front_porch; --=20 2.17.1