@@ -180,15 +180,15 @@ struct ad7173_device_info {
unsigned int clock;
unsigned int id;
char *name;
- bool has_current_inputs;
- bool has_vcom_input;
- bool has_temp;
+ bool has_current_inputs :1;
+ bool has_vcom_input :1;
+ bool has_temp :1;
/* ((AVDD1 − AVSS)/5) */
- bool has_common_input;
- bool has_input_buf;
- bool has_int_ref;
- bool has_ref2;
- bool higher_gpio_bits;
+ bool has_common_input :1;
+ bool has_input_buf :1;
+ bool has_int_ref :1;
+ bool has_ref2 :1;
+ bool higher_gpio_bits :1;
u8 num_gpios;
};