From: Parav Pandit Date: Sun, 19 Mar 2017 09:20:57 +0000 (+0200) Subject: IB/rxe: Do not export module's private function X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=0d38ac8a8be1c8f65a63187b60ea92dbd938c332;p=openwrt%2Fstaging%2Fblogic.git IB/rxe: Do not export module's private function Function rxe_rcv is used internally in RXE and don't need to be exported. This patch removes such export declaration. Signed-off-by: Parav Pandit Signed-off-by: Leon Romanovsky Reviewed-by: Yuval Shaia Signed-off-by: Doug Ledford --- diff --git a/drivers/infiniband/sw/rxe/rxe_recv.c b/drivers/infiniband/sw/rxe/rxe_recv.c index dadd4a0e3cf7..5af242fc0178 100644 --- a/drivers/infiniband/sw/rxe/rxe_recv.c +++ b/drivers/infiniband/sw/rxe/rxe_recv.c @@ -419,4 +419,3 @@ drop: kfree_skb(skb); return 0; } -EXPORT_SYMBOL(rxe_rcv);