Skip to content

Commit

Permalink
Staging: comedi: Remove comedi_bufconfig typedef
Browse files Browse the repository at this point in the history
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 1f6325d commit be6aba4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions drivers/staging/comedi/comedi.h
Original file line number Diff line number Diff line change
Expand Up @@ -304,13 +304,12 @@ enum comedi_support_level {
#define COMEDI_CMDTEST _IOR(CIO, 10, struct comedi_cmd)
#define COMEDI_INSNLIST _IOR(CIO, 11, struct comedi_insnlist)
#define COMEDI_INSN _IOR(CIO, 12, struct comedi_insn)
#define COMEDI_BUFCONFIG _IOR(CIO, 13, comedi_bufconfig)
#define COMEDI_BUFCONFIG _IOR(CIO, 13, struct comedi_bufconfig)
#define COMEDI_BUFINFO _IOWR(CIO, 14, comedi_bufinfo)
#define COMEDI_POLL _IO(CIO, 15)

/* structures */

typedef struct comedi_bufconfig_struct comedi_bufconfig;
typedef struct comedi_bufinfo_struct comedi_bufinfo;

struct comedi_trig {
Expand Down Expand Up @@ -417,7 +416,7 @@ struct comedi_devconfig {
int options[COMEDI_NDEVCONFOPTS];
};

struct comedi_bufconfig_struct {
struct comedi_bufconfig {
unsigned int subdevice;
unsigned int flags;

Expand Down
6 changes: 3 additions & 3 deletions drivers/staging/comedi/comedi_fops.c
Original file line number Diff line number Diff line change
Expand Up @@ -274,12 +274,12 @@ static int do_devconfig_ioctl(struct comedi_device *dev, struct comedi_devconfig
*/
static int do_bufconfig_ioctl(struct comedi_device *dev, void *arg)
{
comedi_bufconfig bc;
struct comedi_bufconfig bc;
struct comedi_async *async;
struct comedi_subdevice *s;
int ret = 0;

if (copy_from_user(&bc, arg, sizeof(comedi_bufconfig)))
if (copy_from_user(&bc, arg, sizeof(struct comedi_bufconfig)))
return -EFAULT;

if (bc.subdevice >= dev->n_subdevices || bc.subdevice < 0)
Expand Down Expand Up @@ -340,7 +340,7 @@ static int do_bufconfig_ioctl(struct comedi_device *dev, void *arg)
bc.maximum_size = async->max_bufsize;

copyback:
if (copy_to_user(arg, &bc, sizeof(comedi_bufconfig)))
if (copy_to_user(arg, &bc, sizeof(struct comedi_bufconfig)))
return -EFAULT;

return 0;
Expand Down

0 comments on commit be6aba4

Please sign in to comment.