aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/cxgb3
diff options
context:
space:
mode:
authorRoland Dreier <rolandd@cisco.com>2008-04-17 00:01:06 -0400
committerRoland Dreier <rolandd@cisco.com>2008-04-17 00:01:06 -0400
commitedba846af9e1f27bab00d5aebfeef01386e00af0 (patch)
treea710b5f17d088b148b9bb8ae4b643c82ffdce899 /drivers/infiniband/hw/cxgb3
parent4b29043921ef021443c5e0d055b7b8dd5df88258 (diff)
RDMA/cxgb3: IDR IDs are signed
Fix sparse warnings about pointer signedness by using a signed int when calling idr_get_new_above(). Signed-off-by: Roland Dreier <rolandd@cisco.com> Acked-by: Steve Wise <swise@opengridcomputing.com>
Diffstat (limited to 'drivers/infiniband/hw/cxgb3')
-rw-r--r--drivers/infiniband/hw/cxgb3/iwch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/cxgb3/iwch.h b/drivers/infiniband/hw/cxgb3/iwch.h
index caf4e6007a44..9ad9b1e7c8c1 100644
--- a/drivers/infiniband/hw/cxgb3/iwch.h
+++ b/drivers/infiniband/hw/cxgb3/iwch.h
@@ -147,7 +147,7 @@ static inline int insert_handle(struct iwch_dev *rhp, struct idr *idr,
147 void *handle, u32 id) 147 void *handle, u32 id)
148{ 148{
149 int ret; 149 int ret;
150 u32 newid; 150 int newid;
151 151
152 do { 152 do {
153 if (!idr_pre_get(idr, GFP_KERNEL)) { 153 if (!idr_pre_get(idr, GFP_KERNEL)) {