From patchwork Fri Dec 2 02:31:57 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: zhang.songyi@zte.com.cn X-Patchwork-Id: 630531 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 1F88EC4332F for ; Fri, 2 Dec 2022 02:33:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231382AbiLBCcj (ORCPT ); Thu, 1 Dec 2022 21:32:39 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49310 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232080AbiLBCcF (ORCPT ); Thu, 1 Dec 2022 21:32:05 -0500 Received: from mxhk.zte.com.cn (mxhk.zte.com.cn [63.216.63.35]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 50E01CCFEB; Thu, 1 Dec 2022 18:32:03 -0800 (PST) Received: from mse-fl2.zte.com.cn (unknown [10.5.228.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mxhk.zte.com.cn (FangMail) with ESMTPS id 4NNcQn6VSzz4xVnd; Fri, 2 Dec 2022 10:32:01 +0800 (CST) Received: from xaxapp01.zte.com.cn ([10.88.40.50]) by mse-fl2.zte.com.cn with SMTP id 2B22VuUN025368; Fri, 2 Dec 2022 10:31:56 +0800 (+08) (envelope-from zhang.songyi@zte.com.cn) Received: from mapi (xaxapp01[null]) by mapi (Zmail) with MAPI id mid31; Fri, 2 Dec 2022 10:31:57 +0800 (CST) Date: Fri, 2 Dec 2022 10:31:57 +0800 (CST) X-Zmail-TransId: 2af96389639d034d3baf X-Mailer: Zmail v1.0 Message-ID: <202212021031575255977@zte.com.cn> Mime-Version: 1.0 From: To: Cc: , , Subject: =?utf-8?q?=5BPATCH_linux-next_v2=5D_mmc=3A_sdhci=3A_Remove_unneeded?= =?utf-8?q?_semicolon?= X-MAIL: mse-fl2.zte.com.cn 2B22VuUN025368 X-Fangmail-Gw-Spam-Type: 0 X-FangMail-Miltered: at cgslv5.04-192.168.250.138.novalocal with ID 638963A1.000 by FangMail milter! X-FangMail-Envelope: 1669948321/4NNcQn6VSzz4xVnd/638963A1.000/10.5.228.133/[10.5.228.133]/mse-fl2.zte.com.cn/ X-Fangmail-Anti-Spam-Filtered: true X-Fangmail-MID-QID: 638963A1.000/4NNcQn6VSzz4xVnd Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org From: zhang songyi The semicolon after the "}" is unneeded. Signed-off-by: zhang songyi --- drivers/mmc/host/sdhci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 42aaeabcad22..8413180a1039 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -2289,7 +2289,7 @@ static bool sdhci_timing_has_preset(unsigned char timing) case MMC_TIMING_UHS_DDR50: case MMC_TIMING_MMC_DDR52: return true; - }; + } return false; }