From: Marek Vasut <marek.vasut+rene...@gmail.com>

Replace macros using constants with BIT()s instead, no functional change.

Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com>
Cc: Geert Uytterhoeven <geert+rene...@glider.be>
Cc: Phil Edworthy <phil.edwor...@renesas.com>
Cc: Simon Horman <horms+rene...@verge.net.au>
Cc: Wolfram Sang <w...@the-dreams.de>
Cc: linux-renesas-soc@vger.kernel.org
To: linux-...@vger.kernel.org
---
V2: Bundle this patch with other cleanups before resending
---
 drivers/pci/controller/pcie-rcar.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/pci/controller/pcie-rcar.c 
b/drivers/pci/controller/pcie-rcar.c
index c8febb009454..5b8736f0cd6b 100644
--- a/drivers/pci/controller/pcie-rcar.c
+++ b/drivers/pci/controller/pcie-rcar.c
@@ -46,14 +46,14 @@
 
 /* Transfer control */
 #define PCIETCTLR              0x02000
-#define  CFINIT                        1
+#define  CFINIT                        BIT(0)
 #define PCIETSTR               0x02004
-#define  DATA_LINK_ACTIVE      1
+#define  DATA_LINK_ACTIVE      BIT(0)
 #define PCIEERRFR              0x02020
 #define  UNSUPPORTED_REQUEST   BIT(4)
 #define PCIEMSIFR              0x02044
 #define PCIEMSIALR             0x02048
-#define  MSIFE                 1
+#define  MSIFE                 BIT(0)
 #define PCIEMSIAUR             0x0204c
 #define PCIEMSIIER             0x02050
 
-- 
2.20.1

Reply via email to