mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-07 22:42:04 +00:00
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>
This commit is contained in:
parent
8b9ce6954c
commit
72755eed6c
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user