OSDN Git Service

media: atmel-isc: get rid of an unused var
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 31 Oct 2017 09:32:02 +0000 (05:32 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 31 Oct 2017 09:32:02 +0000 (05:32 -0400)
drivers/media/platform/atmel/atmel-isc.c: In function 'isc_async_complete':
drivers/media/platform/atmel/atmel-isc.c:1900:28: warning: variable 'sd_entity' set but not used [-Wunused-but-set-variable]
  struct isc_subdev_entity *sd_entity;
                            ^~~~~~~~~

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/platform/atmel/atmel-isc.c

index 2c40a78..8b37656 100644 (file)
@@ -1897,7 +1897,6 @@ static int isc_async_complete(struct v4l2_async_notifier *notifier)
 {
        struct isc_device *isc = container_of(notifier->v4l2_dev,
                                              struct isc_device, v4l2_dev);
-       struct isc_subdev_entity *sd_entity;
        struct video_device *vdev = &isc->video_dev;
        struct vb2_queue *q = &isc->vb2_vidq;
        int ret;
@@ -1910,8 +1909,6 @@ static int isc_async_complete(struct v4l2_async_notifier *notifier)
 
        isc->current_subdev = container_of(notifier,
                                           struct isc_subdev_entity, notifier);
-       sd_entity = isc->current_subdev;
-
        mutex_init(&isc->lock);
        init_completion(&isc->comp);