Acked-by: Mitesh Ahuja. -----Original Message----- From: kbuild test robot [mailto:[email protected]] Sent: Wednesday, February 18, 2015 9:20 AM To: Mitesh Ahuja Cc: [email protected]; Roland Dreier; Devesh Sharma; Selvin Xavier; Sean Hefty; Hal Rosenstock; Jes Sorensen; Prarit Bhargava; [email protected]; [email protected] Subject: [PATCH next] RDMA/ocrdma: ocrdma_free_pd_pool() can be static
drivers/infiniband/hw/ocrdma/ocrdma_hw.c:1510:6: sparse: symbol 'ocrdma_free_pd_pool' was not declared. Should it be static? Signed-off-by: Fengguang Wu <[email protected]> --- ocrdma_hw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/infiniband/hw/ocrdma/ocrdma_hw.c b/drivers/infiniband/hw/ocrdma/ocrdma_hw.c index ec4571b..037893a 100644 --- a/drivers/infiniband/hw/ocrdma/ocrdma_hw.c +++ b/drivers/infiniband/hw/ocrdma/ocrdma_hw.c @@ -1507,7 +1507,7 @@ void ocrdma_alloc_pd_pool(struct ocrdma_dev *dev) } } -void ocrdma_free_pd_pool(struct ocrdma_dev *dev) +static void ocrdma_free_pd_pool(struct ocrdma_dev *dev) { ocrdma_mbx_dealloc_pd_range(dev); kfree(dev->pd_mgr->pd_norm_bitmap); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

