Commit cf8a6b3d authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: 8255: add namespace to 'do_config' function

The name 'do_config' is pretty generic, and this function is the
only one in this driver without namespace. Add namespace to it
just to avoid any issues.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f9af899b
......@@ -169,7 +169,8 @@ static int subdev_8255_insn(struct comedi_device *dev,
return insn->n;
}
static void do_config(struct comedi_device *dev, struct comedi_subdevice *s)
static void subdev_8255_do_config(struct comedi_device *dev,
struct comedi_subdevice *s)
{
struct subdev_8255_private *spriv = s->private;
unsigned long iobase = spriv->iobase;
......@@ -221,7 +222,7 @@ static int subdev_8255_insn_config(struct comedi_device *dev,
return -EINVAL;
}
do_config(dev, s);
subdev_8255_do_config(dev, s);
return 1;
}
......@@ -344,7 +345,7 @@ int subdev_8255_init(struct comedi_device *dev, struct comedi_subdevice *s,
s->state = 0;
s->io_bits = 0;
do_config(dev, s);
subdev_8255_do_config(dev, s);
return 0;
}
......
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