Change the bitfields to unsigned int.
authorDavid Schleef <ds@schleef.org>
Sun, 10 Mar 2002 20:29:17 +0000 (20:29 +0000)
committerDavid Schleef <ds@schleef.org>
Sun, 10 Mar 2002 20:29:17 +0000 (20:29 +0000)
comedi/drivers/ni_stc.h

index ab42dfcdd538a97b6bf5c899cbc5e3b8da1cd690..867a7af99babccd46cc9ec3210bc669a16248829 100644 (file)
@@ -609,7 +609,7 @@ typedef struct ni_board_struct{
        int adbits;
        
        int ai_fifo_depth;
-       int alwaysdither : 1;
+       unsigned int alwaysdither : 1;
        int gainlkup;
        int ai_speed;
 
@@ -619,15 +619,11 @@ typedef struct ni_board_struct{
        int ao_fifo_depth;
        int aorangelkup;
        
-       int ao_unipolar : 1;
-       
-       int has_8255 : 1;
-
-       int has_analog_trig : 1;
-
-       int ao_671x : 1;
-
-       int reg_611x : 1;
+       unsigned int ao_unipolar : 1;
+       unsigned int has_8255 : 1;
+       unsigned int has_analog_trig : 1;
+       unsigned int ao_671x : 1;
+       unsigned int reg_611x : 1;
 
        enum caldac_enum caldac[3];
 }ni_board;