aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/cxgb3/iwch.h
diff options
context:
space:
mode:
authorRoland Dreier <rolandd@cisco.com>2008-04-16 21:01:06 -0700
committerRoland Dreier <rolandd@cisco.com>2008-04-16 21:01:06 -0700
commitedba846af9e1f27bab00d5aebfeef01386e00af0 (patch)
treea710b5f17d088b148b9bb8ae4b643c82ffdce899 /drivers/infiniband/hw/cxgb3/iwch.h
parentRDMA/amso1100: Don't use 0UL as a NULL pointer (diff)
downloadlinux-dev-edba846af9e1f27bab00d5aebfeef01386e00af0.tar.xz
linux-dev-edba846af9e1f27bab00d5aebfeef01386e00af0.zip
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/iwch.h')
-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,
void *handle, u32 id)
{
int ret;
- u32 newid;
+ int newid;
do {
if (!idr_pre_get(idr, GFP_KERNEL)) {