From mboxrd@z Thu Jan 1 00:00:00 1970 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 3FF89C433EF for ; Sun, 8 May 2022 14:54:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=drKa/lpsqi3CixedNUOsZHIl7kDmee11uWFGQi9xMIc=; b=ksI/zMmzttqgTR lP4FB3wboo5xyqA2gYX2t/BSd7XCpE2L8QCmgUYiw6no3fxA2Td7V2dpd66Kpc67YOlVv8ar3zVWQ B+MOfmaWGjaXW6T+0i1JW9JgtO/UaeR+g0bHdfNdKkg3FBY08TucAs6uP1GHGoEvr/JKqr01rmewt Z45DCx42z3MBKOG5VhexvsszgcAltcRsYv1LzcH7sFseAZtBJlzi9t3quYJRLcGuEoJePKRYDf2m1 m+zGkchJsA+lF1meC9RI+mlRf2ySTJtZG5G1guu3WtOqJ3ZhSFu0E+jgdZ1cPy+cK6VS3z7HDT5SK R4j53YTWjnJLwqblbaNw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nniJ1-00APO3-Ee; Sun, 08 May 2022 14:54:43 +0000 Received: from gloria.sntech.de ([185.11.138.130]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nniIp-00APJp-S3; Sun, 08 May 2022 14:54:33 +0000 Received: from ip5b412258.dynamic.kabel-deutschland.de ([91.65.34.88] helo=phil.localnet) by gloria.sntech.de with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nniIb-0000rS-RG; Sun, 08 May 2022 16:54:17 +0200 From: Heiko Stuebner To: Sandy Huang , David Airlie , Daniel Vetter , Haowen Bai Cc: Haowen Bai , dri-devel@lists.freedesktop.org, linux-arm-kernel@lists.infradead.org, linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] drm/rockchip: Remove unneeded semicolon Date: Sun, 08 May 2022 16:54:16 +0200 Message-ID: <3487561.R56niFO833@phil> In-Reply-To: <1651802157-25092-1-git-send-email-baihaowen@meizu.com> References: <1651802157-25092-1-git-send-email-baihaowen@meizu.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220508_075431_969535_1124FC19 X-CRM114-Status: GOOD ( 14.75 ) X-BeenThere: linux-rockchip@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Upstream kernel work for Rockchip platforms List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "Linux-rockchip" Errors-To: linux-rockchip-bounces+linux-rockchip=archiver.kernel.org@lists.infradead.org Am Freitag, 6. Mai 2022, 03:55:57 CEST schrieb Haowen Bai: > Fixes coccicheck warning: > > drivers/gpu/drm/rockchip/rockchip_drm_vop2.c:1476:2-3: Unneeded semicolon > > Signed-off-by: Haowen Bai Yang Li was slightly faster [0] than this patch, so I've picked that one. [0] https://lore.kernel.org/r/20220505232659.4405-1-yang.lee@linux.alibaba.com > --- > drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > index 0b49fed16535..7f9d88634a77 100644 > --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > @@ -1473,7 +1473,7 @@ static void rk3568_set_intf_mux(struct vop2_video_port *vp, int id, > default: > drm_err(vop2->drm, "Invalid interface id %d on vp%d\n", id, vp->id); > return; > - }; > + } > > dip |= RK3568_DSP_IF_POL__CFG_DONE_IMD; > > _______________________________________________ Linux-rockchip mailing list Linux-rockchip@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-rockchip From mboxrd@z Thu Jan 1 00:00:00 1970 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 105D0C433F5 for ; Sun, 8 May 2022 14:55:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=blcE75qgbaC80oODOmUOoEvW6U/ZcCd4L1WVyMvS2jA=; b=WqC4aKq1AI7joW rg/L/YfukB+kHVm3cfNVMOSENhaMzWHo/eK2o/v7vVxuCAeBytdEpyf0Y3TjJYK1r9sxZ12WJvXZ1 3kkqn25iP0qwPbs558kreVTve1p5hjtwURrfN+T8+u39WCi2st6aJgdIkEe/2IlAj+8saXNWGj060 OMNcH4E6Vqxq/G+E4CX835n3uJDTRjg4NFtI5lxjFYS47p9EfzZjlL94GpR60c4AXgvXfdCXVjJmM v7Cu23RtnY4Vfr7xNgAndbZGwc4HM2x1n6chslhiL+Afc32HdMx9r452umB+OlVBkPdHO0FVP3rSY a38eqCaSmTKJq+KjWj1w==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nniIt-00APLo-Oz; Sun, 08 May 2022 14:54:35 +0000 Received: from gloria.sntech.de ([185.11.138.130]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nniIp-00APJp-S3; Sun, 08 May 2022 14:54:33 +0000 Received: from ip5b412258.dynamic.kabel-deutschland.de ([91.65.34.88] helo=phil.localnet) by gloria.sntech.de with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nniIb-0000rS-RG; Sun, 08 May 2022 16:54:17 +0200 From: Heiko Stuebner To: Sandy Huang , David Airlie , Daniel Vetter , Haowen Bai Cc: Haowen Bai , dri-devel@lists.freedesktop.org, linux-arm-kernel@lists.infradead.org, linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] drm/rockchip: Remove unneeded semicolon Date: Sun, 08 May 2022 16:54:16 +0200 Message-ID: <3487561.R56niFO833@phil> In-Reply-To: <1651802157-25092-1-git-send-email-baihaowen@meizu.com> References: <1651802157-25092-1-git-send-email-baihaowen@meizu.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220508_075431_969535_1124FC19 X-CRM114-Status: GOOD ( 14.75 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Am Freitag, 6. Mai 2022, 03:55:57 CEST schrieb Haowen Bai: > Fixes coccicheck warning: > > drivers/gpu/drm/rockchip/rockchip_drm_vop2.c:1476:2-3: Unneeded semicolon > > Signed-off-by: Haowen Bai Yang Li was slightly faster [0] than this patch, so I've picked that one. [0] https://lore.kernel.org/r/20220505232659.4405-1-yang.lee@linux.alibaba.com > --- > drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > index 0b49fed16535..7f9d88634a77 100644 > --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > @@ -1473,7 +1473,7 @@ static void rk3568_set_intf_mux(struct vop2_video_port *vp, int id, > default: > drm_err(vop2->drm, "Invalid interface id %d on vp%d\n", id, vp->id); > return; > - }; > + } > > dip |= RK3568_DSP_IF_POL__CFG_DONE_IMD; > > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel From mboxrd@z Thu Jan 1 00:00:00 1970 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 3466DC433F5 for ; Sun, 8 May 2022 14:54:32 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 58D9B10F60E; Sun, 8 May 2022 14:54:31 +0000 (UTC) Received: from gloria.sntech.de (gloria.sntech.de [185.11.138.130]) by gabe.freedesktop.org (Postfix) with ESMTPS id 91B8510E9D3 for ; Sun, 8 May 2022 14:54:29 +0000 (UTC) Received: from ip5b412258.dynamic.kabel-deutschland.de ([91.65.34.88] helo=phil.localnet) by gloria.sntech.de with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nniIb-0000rS-RG; Sun, 08 May 2022 16:54:17 +0200 From: Heiko Stuebner To: Sandy Huang , David Airlie , Daniel Vetter , Haowen Bai Subject: Re: [PATCH] drm/rockchip: Remove unneeded semicolon Date: Sun, 08 May 2022 16:54:16 +0200 Message-ID: <3487561.R56niFO833@phil> In-Reply-To: <1651802157-25092-1-git-send-email-baihaowen@meizu.com> References: <1651802157-25092-1-git-send-email-baihaowen@meizu.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: , Cc: linux-rockchip@lists.infradead.org, Haowen Bai , linux-arm-kernel@lists.infradead.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Am Freitag, 6. Mai 2022, 03:55:57 CEST schrieb Haowen Bai: > Fixes coccicheck warning: > > drivers/gpu/drm/rockchip/rockchip_drm_vop2.c:1476:2-3: Unneeded semicolon > > Signed-off-by: Haowen Bai Yang Li was slightly faster [0] than this patch, so I've picked that one. [0] https://lore.kernel.org/r/20220505232659.4405-1-yang.lee@linux.alibaba.com > --- > drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > index 0b49fed16535..7f9d88634a77 100644 > --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > @@ -1473,7 +1473,7 @@ static void rk3568_set_intf_mux(struct vop2_video_port *vp, int id, > default: > drm_err(vop2->drm, "Invalid interface id %d on vp%d\n", id, vp->id); > return; > - }; > + } > > dip |= RK3568_DSP_IF_POL__CFG_DONE_IMD; > > From mboxrd@z Thu Jan 1 00:00:00 1970 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 2F2BBC433F5 for ; Sun, 8 May 2022 14:54:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234408AbiEHO61 (ORCPT ); Sun, 8 May 2022 10:58:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34200 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234311AbiEHO6Z (ORCPT ); Sun, 8 May 2022 10:58:25 -0400 Received: from gloria.sntech.de (gloria.sntech.de [185.11.138.130]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AC0A3BCBF for ; Sun, 8 May 2022 07:54:33 -0700 (PDT) Received: from ip5b412258.dynamic.kabel-deutschland.de ([91.65.34.88] helo=phil.localnet) by gloria.sntech.de with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nniIb-0000rS-RG; Sun, 08 May 2022 16:54:17 +0200 From: Heiko Stuebner To: Sandy Huang , David Airlie , Daniel Vetter , Haowen Bai Cc: Haowen Bai , dri-devel@lists.freedesktop.org, linux-arm-kernel@lists.infradead.org, linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] drm/rockchip: Remove unneeded semicolon Date: Sun, 08 May 2022 16:54:16 +0200 Message-ID: <3487561.R56niFO833@phil> In-Reply-To: <1651802157-25092-1-git-send-email-baihaowen@meizu.com> References: <1651802157-25092-1-git-send-email-baihaowen@meizu.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Am Freitag, 6. Mai 2022, 03:55:57 CEST schrieb Haowen Bai: > Fixes coccicheck warning: > > drivers/gpu/drm/rockchip/rockchip_drm_vop2.c:1476:2-3: Unneeded semicolon > > Signed-off-by: Haowen Bai Yang Li was slightly faster [0] than this patch, so I've picked that one. [0] https://lore.kernel.org/r/20220505232659.4405-1-yang.lee@linux.alibaba.com > --- > drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > index 0b49fed16535..7f9d88634a77 100644 > --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > @@ -1473,7 +1473,7 @@ static void rk3568_set_intf_mux(struct vop2_video_port *vp, int id, > default: > drm_err(vop2->drm, "Invalid interface id %d on vp%d\n", id, vp->id); > return; > - }; > + } > > dip |= RK3568_DSP_IF_POL__CFG_DONE_IMD; > >