From: Bill Pemberton Date: Thu, 23 Apr 2009 19:54:57 +0000 (-0400) Subject: Staging: comedi: comment out useless if X-Git-Tag: upstream/snapshot3+hdmi~18383^2~252 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c4d30ee861c3a3a361f934e6f96b1d07a2889976;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git Staging: comedi: comment out useless if This if test doesn't do anything, so comment it out. Signed-off-by: Bill Pemberton Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/8255.c b/drivers/staging/comedi/drivers/8255.c index 2e181f0..bdc3957 100644 --- a/drivers/staging/comedi/drivers/8255.c +++ b/drivers/staging/comedi/drivers/8255.c @@ -361,8 +361,10 @@ int subdev_8255_init_irq(struct comedi_device *dev, struct comedi_subdevice * s, void subdev_8255_cleanup(struct comedi_device *dev, struct comedi_subdevice * s) { if (s->private) { - if (subdevpriv->have_irq) { - } + /* this test does nothing, so comment it out + * if (subdevpriv->have_irq) { + * } + */ kfree(s->private); }