From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH v3] isdn: hfc_{pci,sx}: Avoid empty body if statements Date: Mon, 22 Oct 2018 19:25:07 -0700 (PDT) Message-ID: <20181022.192507.2264639269160412648.davem@davemloft.net> References: <20181018034935.16819-1-natechancellor@gmail.com> <20181019011103.32087-1-natechancellor@gmail.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: isdn@linux-pingi.de, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, yamada.masahiro@socionext.com To: natechancellor@gmail.com Return-path: Received: from shards.monkeyblade.net ([23.128.96.9]:39714 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725799AbeJWKqV (ORCPT ); Tue, 23 Oct 2018 06:46:21 -0400 In-Reply-To: <20181019011103.32087-1-natechancellor@gmail.com> Sender: netdev-owner@vger.kernel.org List-ID: From: Nathan Chancellor Date: Thu, 18 Oct 2018 18:11:04 -0700 > Clang warns: > > drivers/isdn/hisax/hfc_pci.c:131:34: error: if statement has empty body > [-Werror,-Wempty-body] > if (Read_hfc(cs, HFCPCI_INT_S1)); > ^ > drivers/isdn/hisax/hfc_pci.c:131:34: note: put the semicolon on a > separate line to silence this warning > > In my attempt to hide the warnings because I thought they didn't serve > any purpose[1], Masahiro Yamada pointed out that {Read,Write}_hfc in > hci_pci.c should be using a standard register access method; otherwise, > the compiler will just remove the if statements. > > For hfc_pci, use the versions of {Read,Write}_hfc found in > drivers/isdn/hardware/mISDN/hfc_pCI.h while converting pci_io to be > 'void __iomem *' (and clean up ioremap) then remove the empty if > statements. > > For hfc_sx, {Read,Write}_hfc are already use a proper register accessor > (inb, outb) so just remove the unnecessary if statements. > > [1]: https://lore.kernel.org/lkml/20181016021454.11953-1-natechancellor@gmail.com/ > > Link: https://github.com/ClangBuiltLinux/linux/issues/66 > Suggested-by: Masahiro Yamada > Signed-off-by: Nathan Chancellor Applied.