aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/goldfish.h
diff options
context:
space:
mode:
authorRoman Kiryanov <rkir@google.com>2018-07-23 15:47:26 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-08-02 10:24:51 +0200
commit72755eed6c1c5312425ad3d78bf0b916769e6125 (patch)
tree8248bb61cc690ba5ea2a701a9cdaefa20e51c597 /include/linux/goldfish.h
parentmux: adgs1408: new driver for Analog Devices ADGS1408/1409 mux (diff)
downloadlinux-dev-72755eed6c1c5312425ad3d78bf0b916769e6125.tar.xz
linux-dev-72755eed6c1c5312425ad3d78bf0b916769e6125.zip
goldfish: Add missing includes to goldfish.h
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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/goldfish.h')
-rw-r--r--include/linux/goldfish.h3
1 files changed, 3 insertions, 0 deletions
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,