Skip to content

Commit

Permalink
staging: comedi: 8255: add namespace to 'do_config' function
Browse files Browse the repository at this point in the history
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: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jun 14, 2012
1 parent f9af899 commit cf8a6b3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/staging/comedi/drivers/8255.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit cf8a6b3

Please sign in to comment.