From ad85b50e66c1a4e03e871d93a20a281559f59b7c Mon Sep 17 00:00:00 2001 From: Roland Dreier Date: Fri, 20 Apr 2007 22:08:27 -0700 Subject: [PATCH] Remove inline keyword from wq_overflow() Let the compiler decide whether it should be inlined. Signed-off-by: Roland Dreier --- src/qp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qp.c b/src/qp.c index d4cf962..bccb534 100644 --- a/src/qp.c +++ b/src/qp.c @@ -73,7 +73,7 @@ void mlx4_init_qp_indices(struct mlx4_qp *qp) qp->rq.tail = 0; } -static inline int wq_overflow(struct mlx4_wq *wq, int nreq, struct mlx4_cq *cq) +static int wq_overflow(struct mlx4_wq *wq, int nreq, struct mlx4_cq *cq) { unsigned cur; -- 2.46.0