From patchwork Tue Jun 7 14:05:37 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Dooks X-Patchwork-Id: 9161563 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id E4D8060801 for ; Tue, 7 Jun 2016 14:34:36 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D68462656B for ; Tue, 7 Jun 2016 14:34:36 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C7F5827B13; Tue, 7 Jun 2016 14:34:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 44B7A2656B for ; Tue, 7 Jun 2016 14:34:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755428AbcFGOec (ORCPT ); Tue, 7 Jun 2016 10:34:32 -0400 Received: from 82-70-136-246.dsl.in-addr.zen.co.uk ([82.70.136.246]:59546 "EHLO rainbowdash.ducie.codethink.co.uk" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755463AbcFGOeL (ORCPT ); Tue, 7 Jun 2016 10:34:11 -0400 X-Greylist: delayed 1700 seconds by postgrey-1.27 at vger.kernel.org; Tue, 07 Jun 2016 10:34:11 EDT Received: from ben by rainbowdash.ducie.codethink.co.uk with local (Exim 4.87) (envelope-from ) id 1bAHdV-0004hk-6m; Tue, 07 Jun 2016 15:05:41 +0100 From: Ben Dooks To: linux-kernel@lists.codethink.co.uk Cc: Ben Dooks , Tero Kristo , Michael Turquette , Stephen Boyd , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org Subject: [PATCH] clk: ti: fapll: fix address space warnings Date: Tue, 7 Jun 2016 15:05:37 +0100 Message-Id: <1465308337-18047-1-git-send-email-ben.dooks@codethink.co.uk> X-Mailer: git-send-email 2.8.1 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fix the following warnings from casting "void __iomem *" pointers to u32 when using sparse: drivers/clk/ti/fapll.c:583:13: warning: cast removes address space of expression drivers/clk/ti/fapll.c:623:21: warning: cast removes address space of expression Signed-off-by: Ben Dooks --- Cc: Tero Kristo Cc: Michael Turquette Cc: Stephen Boyd Cc: linux-omap@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org Cc: linux-clk@vger.kernel.org --- drivers/clk/ti/fapll.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/clk/ti/fapll.c b/drivers/clk/ti/fapll.c index 66a0d0e..d765f4a 100644 --- a/drivers/clk/ti/fapll.c +++ b/drivers/clk/ti/fapll.c @@ -43,14 +43,14 @@ #define to_synth(_hw) container_of(_hw, struct fapll_synth, hw) /* The bypass bit is inverted on the ddr_pll.. */ -#define fapll_is_ddr_pll(va) (((u32)(va) & 0xffff) == 0x0440) +#define fapll_is_ddr_pll(va) (((u32 __force)(va) & 0xffff) == 0x0440) /* * The audio_pll_clk1 input is hard wired to the 27MHz bypass clock, * and the audio_pll_clk1 synthesizer is hardwared to 32KiHz output. */ -#define is_ddr_pll_clk1(va) (((u32)(va) & 0xffff) == 0x044c) -#define is_audio_pll_clk1(va) (((u32)(va) & 0xffff) == 0x04a8) +#define is_ddr_pll_clk1(va) (((u32 __force)(va) & 0xffff) == 0x044c) +#define is_audio_pll_clk1(va) (((u32 __force)(va) & 0xffff) == 0x04a8) /* Synthesizer divider register */ #define SYNTH_LDMDIV1 BIT(8)