From nobody Fri Nov 29 15:51:39 2024 Received: from out30-119.freemail.mail.aliyun.com (out30-119.freemail.mail.aliyun.com [115.124.30.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0C1122AE6A for ; Wed, 18 Sep 2024 02:34:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.119 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1726626846; cv=none; b=tMol24em1rA5qwbSuiQY7hX5KOw1e9tEpeRXiF4FF6T6+RdBPiM+HgjZaYn3w9dgo0RrpmLt9hIvpr5LaNPtQQDSoy03ozfiLverwYBS9GXUO9AI+TTNV1bwM9GKCnDsr2Ol2wNCu1a47H+pX9bF94J65UEZyLOCAFKxzQJOjQ0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1726626846; c=relaxed/simple; bh=h3YDbuKLoWvCJMBwiFTdUnD0PbLI0ekv27nCxoAdbCA=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=PqlSdGMwSKIzJ6bHnDy4j/o0/ptZJPLe0RVg052y4OEV/5h3lSdbuf0lnfcC/Jh9b+xO0TmYE0kymb9xhuxZE6XnJ+52TwYUyNZXo8FKvhJ0aGzMLp7fRPCpPVfpyP+z4fPPd9ay9IeQOzN1VxMLbAMMum+ZrNiZ5PUfUnC3l4Q= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=mYrzoEgk; arc=none smtp.client-ip=115.124.30.119 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="mYrzoEgk" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1726626840; h=From:To:Subject:Date:Message-Id:MIME-Version; bh=3qLw/Od5UmDZ19I6DykV+eKlxsisqhpJH2+/epwDaQo=; b=mYrzoEgkmCaMzmGwspJs7GXbxKcJbCeBTN9F9uRci+MxTvI+PwoEsRA1BEp+OpikWBz+u3FUSIxDTKCICeeoLuFN3wOIwFF7NuBQ6kTsmL57vxTvFu0sJD8egb3BeZSuTUh04Lpc42FdSE9gpHUseyo7q2FFK/AEBj2HQ2tfSmQ= Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0WFCLPA4_1726626839) by smtp.aliyun-inc.com; Wed, 18 Sep 2024 10:34:00 +0800 From: Yang Li To: quic_abhinavk@quicinc.com, robdclark@gmail.com, dmitry.baryshkov@linaro.org, airlied@gmail.com Cc: dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org, linux-kernel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next v2] drm/msm: Remove unneeded semicolon Date: Wed, 18 Sep 2024 10:33:57 +0800 Message-Id: <20240918023357.59399-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.32.0.3.g01195cf9f Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" ./drivers/gpu/drm/msm/hdmi/hdmi_phy_8998.c:282:2-3: Unneeded semicolon This patch removes an unneeded semicolon after a switch statement in the=20 pll_get_post_div function. Adding a semicolon after a switch statement is=20 unnecessary and can lead to confusion in the code structure. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=3D9852 Signed-off-by: Yang Li Reviewed-by: Dmitry Baryshkov --- drivers/gpu/drm/msm/hdmi/hdmi_phy_8998.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/msm/hdmi/hdmi_phy_8998.c b/drivers/gpu/drm/msm= /hdmi/hdmi_phy_8998.c index 0e3a2b16a2ce..65cf237c6b4e 100644 --- a/drivers/gpu/drm/msm/hdmi/hdmi_phy_8998.c +++ b/drivers/gpu/drm/msm/hdmi/hdmi_phy_8998.c @@ -279,7 +279,7 @@ static int pll_get_post_div(struct hdmi_8998_post_divid= er *pd, u64 bclk) case 25: found_hsclk_divsel =3D 14; break; - }; + } =20 pd->vco_freq =3D found_vco_freq; pd->tx_band_sel =3D found_tx_band_sel; --=20 2.32.0.3.g01195cf9f