Commit b91677ad authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] atmel-isi: get rid of a warning

drivers/media/platform/soc_camera/atmel-isi.c: In function 'start_streaming':
drivers/media/platform/soc_camera/atmel-isi.c:387:6: warning: variable 'sr' set but not used [-Wunused-but-set-variable]
  u32 sr = 0;
      ^
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 615f1bcb
......@@ -384,7 +384,6 @@ static int start_streaming(struct vb2_queue *vq, unsigned int count)
struct soc_camera_device *icd = soc_camera_from_vb2q(vq);
struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
struct atmel_isi *isi = ici->priv;
u32 sr = 0;
int ret;
/* Reset ISI */
......@@ -398,7 +397,7 @@ static int start_streaming(struct vb2_queue *vq, unsigned int count)
spin_lock_irq(&isi->lock);
/* Clear any pending interrupt */
sr = isi_readl(isi, ISI_STATUS);
isi_readl(isi, ISI_STATUS);
if (count)
start_dma(isi, isi->active);
......
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