OSDN Git Service

Staging: media: omap24xx: Merge two lines and remove unused variable
authorMahati Chamarthy <mahati.chamarthy@gmail.com>
Tue, 30 Sep 2014 15:06:06 +0000 (20:36 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 Oct 2014 16:33:46 +0000 (09:33 -0700)
This patch merges two lines and removes a variable that becomes unused
after merging.

Signed-off-by: Mahati Chamarthy <mahati.chamarthy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/omap24xx/omap24xxcam-dma.c

index fa0c156..c427eb9 100644 (file)
@@ -475,15 +475,13 @@ void omap24xxcam_sgdma_process(struct omap24xxcam_sgdma *sgdma)
                                spin_unlock_irqrestore(&sgdma->lock, flags);
                                return;
                        }
-                       unsigned long expires;
                        /* DMA start was successful */
                        sg_state->next_sglist++;
                        sg_state->bytes_read += len;
                        sg_state->queued_sglist++;
 
                        /* We start the reset timer */
-                       expires = jiffies + HZ;
-                       mod_timer(&sgdma->reset_timer, expires);
+                       mod_timer(&sgdma->reset_timer, jiffies + HZ);
                }
                queued_sgdma--;
                sgslot = (sgslot + 1) % NUM_SG_DMA;