diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2016-09-02 01:28:05 +0300 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2016-09-09 08:15:24 +0300 |
commit | fade037e0fd504cd02f51d280928d89c75527f2e (patch) | |
tree | f8497e920119bc4c4889af65c822560e739b4866 /drivers/rpmsg/rpmsg_core.c | |
parent | 5e619b48677ca8c9fb907c58383859cea78705c9 (diff) | |
download | linux-fade037e0fd504cd02f51d280928d89c75527f2e.tar.xz |
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.c | 3 |
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" |