From patchwork Fri Mar 1 09:05:34 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yang Li X-Patchwork-Id: 13578174 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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id AE5D7C5475B for ; Fri, 1 Mar 2024 09:10:45 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 203CC10E1D7; Fri, 1 Mar 2024 09:10:45 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="BxOkAoWB"; dkim-atps=neutral Received: from out30-98.freemail.mail.aliyun.com (out30-98.freemail.mail.aliyun.com [115.124.30.98]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6365E10E1FB for ; Fri, 1 Mar 2024 09:10:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1709284241; h=From:To:Subject:Date:Message-Id:MIME-Version; bh=Wnp0K/c2jn/Ld3sdKbW2JbmVvraHQoeDkcCCW9FRwWg=; b=BxOkAoWBJWq+PaHHAJzMiQT9lZgfAUXkkm3iPotbX4GKrzm1JSzvChhth1N7nwzCGpDLOP+2uztFvEccnNu7zL7CuRNuRysytjYo1xwei9KPx1aZrrBi3rM8jWZiPQCdg8DH7ykU9+OKu+84aj+8OFbjqJbrZxdUk+P0bLB1yUU= X-Alimail-AntiSpam: AC=PASS; BC=-1|-1; BR=01201311R121e4; CH=green; DM=||false|; DS=||; FP=0|-1|-1|-1|0|-1|-1|-1; HT=ay29a033018045170; MF=yang.lee@linux.alibaba.com; NM=1; PH=DS; RN=5; SR=0; TI=SMTPD_---0W1awj9j_1709283935; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0W1awj9j_1709283935) by smtp.aliyun-inc.com; Fri, 01 Mar 2024 17:05:36 +0800 From: Yang Li To: thomas.hellstrom@linux.intel.com, maarten.lankhorst@linux.intel.com Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Yang Li Subject: [PATCH -next 1/2] drm/dp: Remove unneeded semicolon Date: Fri, 1 Mar 2024 17:05:34 +0800 Message-Id: <20240301090535.87969-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This patch removes the unnecessary semicolons at the end of the for statements which cleans up the code and ensures consistency with the rest of the kernel coding style. Signed-off-by: Yang Li --- drivers/gpu/drm/display/drm_dp_tunnel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/display/drm_dp_tunnel.c b/drivers/gpu/drm/display/drm_dp_tunnel.c index 120e0de674c1..479dd004f365 100644 --- a/drivers/gpu/drm/display/drm_dp_tunnel.c +++ b/drivers/gpu/drm/display/drm_dp_tunnel.c @@ -1125,7 +1125,7 @@ static int allocate_tunnel_bw(struct drm_dp_tunnel *tunnel, int bw) } timeout = wait_woken(&wait, TASK_UNINTERRUPTIBLE, timeout); - }; + } remove_wait_queue(&mgr->bw_req_queue, &wait);