Lines Matching defs:corsairpsu_data
122 struct corsairpsu_data { struct
123 struct hid_device *hdev;
124 struct device *hwmon_dev;
125 struct dentry *debugfs;
126 struct completion wait_completion;
127 struct mutex lock; /* for locking access to cmd_buffer */
128 u8 *cmd_buffer;
129 char vendor[REPLY_SIZE];
130 char product[REPLY_SIZE];
131 long temp_crit[TEMP_COUNT];
132 long in_crit[RAIL_COUNT];
133 long in_lcrit[RAIL_COUNT];
134 long curr_crit[RAIL_COUNT];
135 u8 temp_crit_support;
136 u8 in_crit_support;
160 static int corsairpsu_usb_cmd(struct corsairpsu_data *priv, u8 p0, u8 p1, u8 p2, void *data) in corsairpsu_usb_cmd() argument