Skip to content

Commit

Permalink
ASoC: samsung: Remove unused variable from idma.c
Browse files Browse the repository at this point in the history
‘iiscon’ is not used in the function. Remove it.

Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Sachin Kamat authored and Mark Brown committed Jun 27, 2014
1 parent c1ae59c commit 41adf90
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sound/soc/samsung/idma.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,9 @@ static int idma_mmap(struct snd_pcm_substream *substream,
static irqreturn_t iis_irq(int irqno, void *dev_id)
{
struct idma_ctrl *prtd = (struct idma_ctrl *)dev_id;
u32 iiscon, iisahb, val, addr;
u32 iisahb, val, addr;

iisahb = readl(idma.regs + I2SAHB);
iiscon = readl(idma.regs + I2SCON);

val = (iisahb & AHB_LVL0INT) ? AHB_CLRLVL0INT : 0;

Expand Down

0 comments on commit 41adf90

Please sign in to comment.