At Fri, 9 Aug 2013 12:57:06 +0300, Dan Carpenter wrote: > > We don't actually use the "go" variable so it can be removed. > > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Thanks, applied. Takashi > > diff --git a/sound/oss/dmabuf.c b/sound/oss/dmabuf.c > index a59c888..461d94c 100644 > --- a/sound/oss/dmabuf.c > +++ b/sound/oss/dmabuf.c > @@ -557,7 +557,6 @@ int DMAbuf_getrdbuffer(int dev, char **buf, int *len, int dontblock) > unsigned long flags; > int err = 0, n = 0; > struct dma_buffparms *dmap = adev->dmap_in; > - int go; > > if (!(adev->open_mode & OPEN_READ)) > return -EIO; > @@ -584,7 +583,7 @@ int DMAbuf_getrdbuffer(int dev, char **buf, int *len, int dontblock) > spin_unlock_irqrestore(&dmap->lock,flags); > return -EAGAIN; > } > - if ((go = adev->go)) > + if (adev->go) > timeout = dmabuf_timeout(dmap); > > spin_unlock_irqrestore(&dmap->lock,flags); > _______________________________________________ > Alsa-devel mailing list > Alsa-devel@xxxxxxxxxxxxxxxx > http://mailman.alsa-project.org/mailman/listinfo/alsa-devel > -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html