From 4177648d92ab91227de09f67a982b955b27cc568 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 3 May 2015 19:32:54 +0200 Subject: [PATCH] isert: Declare a local function static Detected by checkpatch. Signed-off-by: Bart Van Assche --- 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);