Skip to content

Commit

Permalink
Staging: comedi: kcomedilib: dio.c: remove unused functions
Browse files Browse the repository at this point in the history
Remove the unused functions from the dio.c file as they are not
needed.

Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed May 11, 2010
1 parent e6e4d05 commit c9f7725
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions drivers/staging/comedi/kcomedilib/dio.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,36 +43,6 @@ int comedi_dio_config(void *dev, unsigned int subdev, unsigned int chan,
}
EXPORT_SYMBOL(comedi_dio_config);

int comedi_dio_read(void *dev, unsigned int subdev, unsigned int chan,
unsigned int *val)
{
struct comedi_insn insn;

memset(&insn, 0, sizeof(insn));
insn.insn = INSN_READ;
insn.n = 1;
insn.data = val;
insn.subdev = subdev;
insn.chanspec = CR_PACK(chan, 0, 0);

return comedi_do_insn(dev, &insn);
}

int comedi_dio_write(void *dev, unsigned int subdev, unsigned int chan,
unsigned int val)
{
struct comedi_insn insn;

memset(&insn, 0, sizeof(insn));
insn.insn = INSN_WRITE;
insn.n = 1;
insn.data = &val;
insn.subdev = subdev;
insn.chanspec = CR_PACK(chan, 0, 0);

return comedi_do_insn(dev, &insn);
}

int comedi_dio_bitfield(void *dev, unsigned int subdev, unsigned int mask,
unsigned int *bits)
{
Expand Down

0 comments on commit c9f7725

Please sign in to comment.