Commit 9842a417 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] atmel-isi: Fix a truncate warning

   drivers/media/platform/soc_camera/atmel-isi.c: In function 'start_streaming':
   drivers/media/platform/soc_camera/atmel-isi.c:397:26: warning: large integer implicitly truncated to unsigned type [-Woverflow]
     isi_writel(isi, ISI_INTDIS, ~0UL);
                             ^
Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 8f05232f
...@@ -394,7 +394,7 @@ static int start_streaming(struct vb2_queue *vq, unsigned int count) ...@@ -394,7 +394,7 @@ static int start_streaming(struct vb2_queue *vq, unsigned int count)
return ret; return ret;
} }
/* Disable all interrupts */ /* Disable all interrupts */
isi_writel(isi, ISI_INTDIS, ~0UL); isi_writel(isi, ISI_INTDIS, (u32)~0UL);
spin_lock_irq(&isi->lock); spin_lock_irq(&isi->lock);
/* Clear any pending interrupt */ /* Clear any pending interrupt */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment