Skip to content

Commit

Permalink
vchiq_2835_arm: suppress warning
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
teknoraver authored and popcornmix committed Nov 18, 2019
1 parent 0fd5ad4 commit 29574a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 29574a9

Please sign in to comment.