aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rpmsg/rpmsg_core.c
diff options
context:
space:
mode:
authorBjorn Andersson <bjorn.andersson@linaro.org>2016-09-01 15:28:05 -0700
committerBjorn Andersson <bjorn.andersson@linaro.org>2016-09-08 22:15:24 -0700
commitfade037e0fd504cd02f51d280928d89c75527f2e (patch)
treef8497e920119bc4c4889af65c822560e739b4866 /drivers/rpmsg/rpmsg_core.c
parentrpmsg: Split rpmsg core and virtio backend (diff)
downloadlinux-dev-fade037e0fd504cd02f51d280928d89c75527f2e.tar.xz
linux-dev-fade037e0fd504cd02f51d280928d89c75527f2e.zip
rpmsg: Hide rpmsg indirection tables
Move the device and endpoint indirection tables to the rpmsg internal header file, to hide them from the public API. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/rpmsg/rpmsg_core.c')
-rw-r--r--drivers/rpmsg/rpmsg_core.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/rpmsg/rpmsg_core.c b/drivers/rpmsg/rpmsg_core.c
index e1d765a7372c..b6ea9ffa7381 100644
--- a/drivers/rpmsg/rpmsg_core.c
+++ b/drivers/rpmsg/rpmsg_core.c
@@ -20,7 +20,10 @@
#define pr_fmt(fmt) "%s: " fmt, __func__
#include <linux/kernel.h>
+#include <linux/module.h>
#include <linux/rpmsg.h>
+#include <linux/of_device.h>
+#include <linux/slab.h>
#include "rpmsg_internal.h"