From: Suman Anna Date: Thu, 20 Jul 2017 02:06:34 +0000 (-0500) Subject: rpmsg: virtio_rpmsg_bus: fix export of rpmsg_send_offchannel_raw() X-Git-Tag: v4.14-rc1~75^2~27 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=e156aba05040c832a9d898e16eaeea722fa1aed1;p=linux-2.6-block.git rpmsg: virtio_rpmsg_bus: fix export of rpmsg_send_offchannel_raw() Commit 8a228ecfe086b ("rpmsg: Indirection table for rpmsg_endpoint operations") has made the rpmsg_send_offchannel_raw() a static function and local to the virtio_rpmsg_bus module, but has not dropped the corresponding EXPORT_SYMBOL. Fix this. Signed-off-by: Suman Anna Signed-off-by: Bjorn Andersson --- diff --git a/drivers/rpmsg/virtio_rpmsg_bus.c b/drivers/rpmsg/virtio_rpmsg_bus.c index eee2a9f77d37..7216278f2947 100644 --- a/drivers/rpmsg/virtio_rpmsg_bus.c +++ b/drivers/rpmsg/virtio_rpmsg_bus.c @@ -632,7 +632,6 @@ out: mutex_unlock(&vrp->tx_lock); return err; } -EXPORT_SYMBOL(rpmsg_send_offchannel_raw); static int virtio_rpmsg_send(struct rpmsg_endpoint *ept, void *data, int len) {