]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
goldfish: Use dedicated macros instead of manual bit shifting
authorRoman Kiryanov <rkir@google.com>
Mon, 23 Jul 2018 22:47:27 +0000 (15:47 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 Aug 2018 08:24:51 +0000 (10:24 +0200)
There are dedicated macros (lower_32_bits and upper_32_bits)
available to extract the lower and upper 32 bits. They provide
better readability and could prevent some compilation warnings.

Signed-off-by: Roman Kiryanov <rkir@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/goldfish.h

index 159b4191f15d8b3515257b345460b6418b19f880..265a099cd3b83dce18e24a36e37d6038e25fc7d0 100644 (file)
@@ -2,6 +2,7 @@
 #ifndef __LINUX_GOLDFISH_H
 #define __LINUX_GOLDFISH_H
 
+#include <linux/kernel.h>
 #include <linux/types.h>
 #include <linux/io.h>
 
 static inline void gf_write_ptr(const void *ptr, void __iomem *portl,
                                void __iomem *porth)
 {
-       writel((u32)(unsigned long)ptr, portl);
+       const unsigned long addr = (unsigned long)ptr;
+
+       writel(lower_32_bits(addr), portl);
 #ifdef CONFIG_64BIT
-       writel((unsigned long)ptr >> 32, porth);
+       writel(upper_32_bits(addr), porth);
 #endif
 }
 
@@ -20,9 +23,9 @@ static inline void gf_write_dma_addr(const dma_addr_t addr,
                                     void __iomem *portl,
                                     void __iomem *porth)
 {
-       writel((u32)addr, portl);
+       writel(lower_32_bits(addr), portl);
 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
-       writel(addr >> 32, porth);
+       writel(upper_32_bits(addr), porth);
 #endif
 }