vchiq_2835_arm: suppress warning
authorMatteo Croce <mcroce@redhat.com>
Sun, 6 Oct 2019 01:23:15 +0000 (03:23 +0200)
committerpopcornmix <popcornmix@gmail.com>
Wed, 1 Jul 2020 15:33:06 +0000 (16:33 +0100)
Suppress the following warning by casting the pointer to and uintptr_t
before void*:

  drivers/staging/vc04_services/interface/vchiq_arm/vchiq_2835_arm.c: In function ‘vchiq_prepare_bulk_data’:
  drivers/staging/vc04_services/interface/vchiq_arm/vchiq_2835_arm.c:260:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
    bulk->data = (void *)VC_SAFE(pagelistinfo->dma_addr);
                 ^

Signed-off-by: Matteo Croce <mcroce@redhat.com>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_2835_arm.c

index 230e1b1..2dfdee1 100644 (file)
@@ -255,7 +255,7 @@ vchiq_prepare_bulk_data(struct vchiq_bulk *bulk, void *offset, int size,
        if (!pagelistinfo)
                return VCHIQ_ERROR;
 
-       bulk->data = (void *)VC_SAFE(pagelistinfo->dma_addr);
+       bulk->data = (void *)(uintptr_t)VC_SAFE(pagelistinfo->dma_addr);
 
        /*
         * Store the pagelistinfo address in remote_data,