]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
IB: find_first_zero_bit() takes unsigned pointer
authorRoland Dreier <rolandd@cisco.com>
Wed, 10 Oct 2007 02:59:04 +0000 (19:59 -0700)
committerRoland Dreier <rolandd@cisco.com>
Wed, 10 Oct 2007 02:59:04 +0000 (19:59 -0700)
Fix sparse warning

    drivers/infiniband/core/device.c:142:6: warning: incorrect type in argument 1 (different signedness)
    drivers/infiniband/core/device.c:142:6:    expected unsigned long const *addr
    drivers/infiniband/core/device.c:142:6:    got long *[assigned] inuse

by making the local variable inuse unsigned.  Does not affect generated
code at all.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
drivers/infiniband/core/device.c

index 2506c43ba041c996a54a30b80efb455d908da5a7..5ac5ffee05cbbc044c34aecfd6c1f323f719ec6e 100644 (file)
@@ -120,12 +120,12 @@ static struct ib_device *__ib_device_get_by_name(const char *name)
 
 static int alloc_name(char *name)
 {
-       long *inuse;
+       unsigned long *inuse;
        char buf[IB_DEVICE_NAME_MAX];
        struct ib_device *device;
        int i;
 
-       inuse = (long *) get_zeroed_page(GFP_KERNEL);
+       inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
        if (!inuse)
                return -ENOMEM;