]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
Staging: comedi: Remove comedi_insnlist typedef
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:05:59 +0000 (22:05 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:53:57 +0000 (14:53 -0700)
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/comedi.h
drivers/staging/comedi/comedi_compat32.c
drivers/staging/comedi/comedi_fops.c

index 3c99179f90ef5f0ed59b2b07d180b0c0868f42c0..a2dc749ef6b984bfe902f5affdc8b6bcc82ee6a5 100644 (file)
@@ -302,7 +302,7 @@ enum comedi_support_level {
 #define COMEDI_RANGEINFO _IOR(CIO, 8, comedi_rangeinfo)
 #define COMEDI_CMD _IOR(CIO, 9, struct comedi_cmd)
 #define COMEDI_CMDTEST _IOR(CIO, 10, struct comedi_cmd)
-#define COMEDI_INSNLIST _IOR(CIO, 11, comedi_insnlist)
+#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_BUFINFO _IOWR(CIO, 14, comedi_bufinfo)
@@ -310,7 +310,6 @@ enum comedi_support_level {
 
 /* structures */
 
-typedef struct comedi_insnlist_struct comedi_insnlist;
 typedef struct comedi_chaninfo_struct comedi_chaninfo;
 typedef struct comedi_subdinfo_struct comedi_subdinfo;
 typedef struct comedi_devinfo_struct comedi_devinfo;
@@ -344,7 +343,7 @@ struct comedi_insn {
        unsigned int unused[3];
 };
 
-struct comedi_insnlist_struct {
+struct comedi_insnlist {
        unsigned int n_insns;
        struct comedi_insn *insns;
 };
index 62990905774d83c4db2c9f0bfd061ab1ffdcbf4b..f3cedb528e4955886255723d4c1623fd43cd6291 100644 (file)
@@ -361,7 +361,7 @@ static int get_compat_insn(struct comedi_insn __user *insn,
 static int compat_insnlist(struct file *file, unsigned long arg)
 {
        struct combined_insnlist {
-               comedi_insnlist insnlist;
+               struct comedi_insnlist insnlist;
                struct comedi_insn insn[1];
        } __user *s;
        struct comedi32_insnlist_struct __user *insnlist32;
index d944c5e64eb43019148f19314942a170c34db2a3..a70d71b8b0f0d3728ebff3d76d61325ebafcbd87 100644 (file)
@@ -628,13 +628,13 @@ static int parse_insn(struct comedi_device *dev, struct comedi_insn *insn, unsig
 #define MAX_SAMPLES 256
 static int do_insnlist_ioctl(struct comedi_device *dev, void *arg, void *file)
 {
-       comedi_insnlist insnlist;
+       struct comedi_insnlist insnlist;
        struct comedi_insn *insns = NULL;
        unsigned int *data = NULL;
        int i = 0;
        int ret = 0;
 
-       if (copy_from_user(&insnlist, arg, sizeof(comedi_insnlist)))
+       if (copy_from_user(&insnlist, arg, sizeof(struct comedi_insnlist)))
                return -EFAULT;
 
        data = kmalloc(sizeof(unsigned int) * MAX_SAMPLES, GFP_KERNEL);