From 612fac98740001689074f53af484870649bff1b3 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Tue, 16 Jun 2015 23:55:52 +0000 Subject: [PATCH] isert: Declare a local function static Detected by checkpatch. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@6354 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- iscsi-scst/kernel/isert-scst/iser_rdma.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iscsi-scst/kernel/isert-scst/iser_rdma.c b/iscsi-scst/kernel/isert-scst/iser_rdma.c index ad0f402b5..635d429c2 100644 --- a/iscsi-scst/kernel/isert-scst/iser_rdma.c +++ b/iscsi-scst/kernel/isert-scst/iser_rdma.c @@ -45,7 +45,7 @@ static DEFINE_MUTEX(dev_list_mutex); -void isert_portal_free(struct isert_portal *portal); +static void isert_portal_free(struct isert_portal *portal); static int isert_num_recv_posted_on_err(struct ib_recv_wr *first_ib_wr, struct ib_recv_wr *bad_wr) @@ -1658,7 +1658,7 @@ out: return err; } -void isert_portal_free(struct isert_portal *portal) +static void isert_portal_free(struct isert_portal *portal) { lockdep_assert_held(&dev_list_mutex);