mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/2] goldfish: Add missing includes to goldfish.h
@ 2018-07-23 22:47 rkir
  2018-07-23 22:47 ` [PATCH 2/2] goldfish: Use dedicated macros instead of manual bit shifting rkir
  2018-07-31 18:58 ` [PATCH 1/2] goldfish: Add missing includes to goldfish.h Roman Kiryanov
  0 siblings, 2 replies; 3+ messages in thread
From: rkir @ 2018-07-23 22:47 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, tkjos, Roman Kiryanov

From: Roman Kiryanov <rkir@google.com>

goldfish.h refers to external symbols such as
dma_addr_t and writel. This causes compilation errors
if this file is included before other header files.

The mentioned symbols are defined in types.h (dma_addr_t)
and io.h (writel).

Signed-off-by: Roman Kiryanov <rkir@google.com>
---
 include/linux/goldfish.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/linux/goldfish.h b/include/linux/goldfish.h
index 2835c150c3ff..159b4191f15d 100644
--- a/include/linux/goldfish.h
+++ b/include/linux/goldfish.h
@@ -2,6 +2,9 @@
 #ifndef __LINUX_GOLDFISH_H
 #define __LINUX_GOLDFISH_H
 
+#include <linux/types.h>
+#include <linux/io.h>
+
 /* Helpers for Goldfish virtual platform */
 
 static inline void gf_write_ptr(const void *ptr, void __iomem *portl,
-- 
2.18.0.233.g985f88cf7e-goog


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 2/2] goldfish: Use dedicated macros instead of manual bit shifting
  2018-07-23 22:47 [PATCH 1/2] goldfish: Add missing includes to goldfish.h rkir
@ 2018-07-23 22:47 ` rkir
  2018-07-31 18:58 ` [PATCH 1/2] goldfish: Add missing includes to goldfish.h Roman Kiryanov
  1 sibling, 0 replies; 3+ messages in thread
From: rkir @ 2018-07-23 22:47 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, tkjos, Roman Kiryanov

From: Roman Kiryanov <rkir@google.com>

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>
---
 include/linux/goldfish.h | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/include/linux/goldfish.h b/include/linux/goldfish.h
index 159b4191f15d..265a099cd3b8 100644
--- a/include/linux/goldfish.h
+++ b/include/linux/goldfish.h
@@ -2,6 +2,7 @@
 #ifndef __LINUX_GOLDFISH_H
 #define __LINUX_GOLDFISH_H
 
+#include <linux/kernel.h>
 #include <linux/types.h>
 #include <linux/io.h>
 
@@ -10,9 +11,11 @@
 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
 }
 
-- 
2.18.0.233.g985f88cf7e-goog


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] goldfish: Add missing includes to goldfish.h
  2018-07-23 22:47 [PATCH 1/2] goldfish: Add missing includes to goldfish.h rkir
  2018-07-23 22:47 ` [PATCH 2/2] goldfish: Use dedicated macros instead of manual bit shifting rkir
@ 2018-07-31 18:58 ` Roman Kiryanov
  1 sibling, 0 replies; 3+ messages in thread
From: Roman Kiryanov @ 2018-07-31 18:58 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, Todd Kjos

Hi Greg,

could you please confirm you received my patch?

Regards,
Roman.
On Mon, Jul 23, 2018 at 3:47 PM <rkir@google.com> wrote:
>
> From: Roman Kiryanov <rkir@google.com>
>
> goldfish.h refers to external symbols such as
> dma_addr_t and writel. This causes compilation errors
> if this file is included before other header files.
>
> The mentioned symbols are defined in types.h (dma_addr_t)
> and io.h (writel).
>
> Signed-off-by: Roman Kiryanov <rkir@google.com>
> ---
>  include/linux/goldfish.h | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/include/linux/goldfish.h b/include/linux/goldfish.h
> index 2835c150c3ff..159b4191f15d 100644
> --- a/include/linux/goldfish.h
> +++ b/include/linux/goldfish.h
> @@ -2,6 +2,9 @@
>  #ifndef __LINUX_GOLDFISH_H
>  #define __LINUX_GOLDFISH_H
>
> +#include <linux/types.h>
> +#include <linux/io.h>
> +
>  /* Helpers for Goldfish virtual platform */
>
>  static inline void gf_write_ptr(const void *ptr, void __iomem *portl,
> --
> 2.18.0.233.g985f88cf7e-goog
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-07-31 18:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-23 22:47 [PATCH 1/2] goldfish: Add missing includes to goldfish.h rkir
2018-07-23 22:47 ` [PATCH 2/2] goldfish: Use dedicated macros instead of manual bit shifting rkir
2018-07-31 18:58 ` [PATCH 1/2] goldfish: Add missing includes to goldfish.h Roman Kiryanov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome