Commit 11b22e14 authored by Abdul Hussain's avatar Abdul Hussain Committed by Greg Kroah-Hartman

Staging: comedi: fl512: Simplify a trivial if-return sequence

This patch simplify a trivial if-return sequence. Possibly combine with
a preceding function call.
Signed-off-by: default avatarAbdul Hussain <habdul@visteon.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fa4c586e
......@@ -136,11 +136,7 @@ static int fl512_attach(struct comedi_device *dev, struct comedi_devconfig *it)
s->range_table = &range_fl512;
s->insn_write = fl512_ao_insn_write;
ret = comedi_alloc_subdev_readback(s);
if (ret)
return ret;
return 0;
return comedi_alloc_subdev_readback(s);
}
static struct comedi_driver fl512_driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment