From patchwork Tue May 17 00:33:17 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yang Li X-Patchwork-Id: 12851777 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 97FAEC433F5 for ; Tue, 17 May 2022 00:34:37 +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:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=6rwAMboS75xMgbGzP3EtadT2IYg+9OZ3cYKny/A9RWE=; b=mSdCYYfwUXlJ5E 2Yxb96xbcsJmZxsZ7TmIZoFbrQSkzpIiJ0Ic3hHY6Hpwq0bKYYhrE8/v3yHZS5jnk5GTWLn1FK3Sn PBb5aiHUf0PjAos1PGmy4nu/2R4UUgFa0f+Qmnt48BrqVns2Uj8qSHOJXTCN9llRbgwD2WtB1tr42 w8gtU9VXJkeKp8dMTP1hdgtYqropOue17nUDcWOlRYGrBKlGrdqJyaxhnj03niFw1Kh2uSdsSDkGa VDi/ImzpzmGgLbcQEha/GdGjYk8VH80iDO2FFJBeFL2DdQ5AFFgsViWqO+ZywWMK5a0t7Wsuads8a pUN39iiR02Vq8Ei8vCoQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nql9X-00B0FE-LS; Tue, 17 May 2022 00:33:31 +0000 Received: from out30-133.freemail.mail.aliyun.com ([115.124.30.133]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nql9U-00B0Bn-Cu for linux-arm-kernel@lists.infradead.org; Tue, 17 May 2022 00:33:30 +0000 X-Alimail-AntiSpam: AC=PASS; BC=-1|-1; BR=01201311R921e4; CH=green; DM=||false|; DS=||; FP=0|-1|-1|-1|0|-1|-1|-1; HT=e01e04400; MF=yang.lee@linux.alibaba.com; NM=1; PH=DS; RN=10; SR=0; TI=SMTPD_---0VDPIy.u_1652747598; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0VDPIy.u_1652747598) by smtp.aliyun-inc.com(127.0.0.1); Tue, 17 May 2022 08:33:19 +0800 From: Yang Li To: mchehab@kernel.org Subject: [PATCH -next] media: atmel: atmel-isc-base: remove unneeded semicolon Date: Tue, 17 May 2022 08:33:17 +0800 Message-Id: <20220517003317.122054-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220516_173328_611102_2FCC72CC X-CRM114-Status: UNSURE ( 7.38 ) X-CRM114-Notice: Please train this message. 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: , Cc: alexandre.belloni@bootlin.com, Abaci Robot , linux-kernel@vger.kernel.org, Yang Li , eugen.hristev@microchip.com, claudiu.beznea@microchip.com, linux-arm-kernel@lists.infradead.org, linux-media@vger.kernel.org Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Eliminate the following coccicheck warning: ./drivers/media/platform/atmel/atmel-isc-base.c:1469:2-3: Unneeded semicolon Reported-by: Abaci Robot Signed-off-by: Yang Li --- drivers/media/platform/atmel/atmel-isc-base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/platform/atmel/atmel-isc-base.c b/drivers/media/platform/atmel/atmel-isc-base.c index 2f07a50035c8..88308bb9c079 100644 --- a/drivers/media/platform/atmel/atmel-isc-base.c +++ b/drivers/media/platform/atmel/atmel-isc-base.c @@ -1466,7 +1466,7 @@ static void isc_awb_work(struct work_struct *w) if (isc->stop) { mutex_unlock(&isc->awb_mutex); return; - }; + } isc_update_profile(isc);