From patchwork Sat Apr 1 15:52:12 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christophe JAILLET X-Patchwork-Id: 13197138 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 BFE2FC76196 for ; Sat, 1 Apr 2023 15:53:42 +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: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:In-Reply-To:References: List-Owner; bh=Sh/pSCs1MJ9nEKYPcMNIgm2tYK3Otim6WwQXtgE89UY=; b=v9p1P7iP/aJnla V4xf2kyyu1FjMm+C/mwtulgJMAeLAl0nfDYHK01192IbAMROhPBZziBetszCiOdaowowzDQ77ANJi gra813nDLxP3KpKqr7YHVuQU3km17m90skMvDl5i1fu2I3pWhLLYjT2k20TVh0YHEGJyOM05ykZuf NOee8ZYCPuLskJjaqdnWWyJN1B6jYVbQWlzXoOUo6yY1r4vyeoLkzC/aEFRHCV40KT5oeiAkWdCo1 E3/asRSPvMEWn48tCopNQ+k8u8y1jOY78B+qL4CFSetdFdGxyPL+ravaYlMWy6V4Hmm4ghU5clBMQ vMWgyFgUI6dp/rnedkqA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1pidWp-00Ap4H-0r; Sat, 01 Apr 2023 15:52:31 +0000 Received: from smtp-19.smtpout.orange.fr ([80.12.242.19] helo=smtp.smtpout.orange.fr) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1pidWl-00Ap2g-1c for linux-arm-kernel@lists.infradead.org; Sat, 01 Apr 2023 15:52:29 +0000 Received: from pop-os.home ([86.243.2.178]) by smtp.orange.fr with ESMTPA id idWapMwyLusWfidWap27kk; Sat, 01 Apr 2023 17:52:19 +0200 X-ME-Helo: pop-os.home X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Sat, 01 Apr 2023 17:52:19 +0200 X-ME-IP: 86.243.2.178 From: Christophe JAILLET To: Michael Turquette , Stephen Boyd , Maxime Coquelin , Alexandre Torgue Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET , linux-clk@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org Subject: [PATCH] clk: stm32h7: Remove an unused field in struct stm32_fractional_divider Date: Sat, 1 Apr 2023 17:52:12 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230401_085227_700038_5C57F848 X-CRM114-Status: UNSURE ( 8.47 ) 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: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org 'mmask' has never been used in this driver. Remove it. Signed-off-by: Christophe JAILLET --- drivers/clk/clk-stm32h7.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/clk/clk-stm32h7.c b/drivers/clk/clk-stm32h7.c index 1a701eada0c1..04c18a1d45d3 100644 --- a/drivers/clk/clk-stm32h7.c +++ b/drivers/clk/clk-stm32h7.c @@ -667,7 +667,6 @@ struct stm32_fractional_divider { void __iomem *mreg; u8 mshift; u8 mwidth; - u32 mmask; void __iomem *nreg; u8 nshift;