Lines Matching defs:report
73 * Commands that can be sent in a feature report.
164 * The report ID is always 0, so strip the first byte from the output.
165 * hid_report_len() is not counting the report ID, so +1 to the length
199 /* The report ID is always 0 */
204 * when sending a feature report.
257 * Sometimes a lingering report for this command can
258 * get read back instead of the last set report if
301 u8 report[11] = {STEAM_CMD_HAPTIC_RUMBLE, 9};
303 report[3] = intensity & 0xFF;
304 report[4] = intensity >> 8;
305 report[5] = left_speed & 0xFF;
306 report[6] = left_speed >> 8;
307 report[7] = right_speed & 0xFF;
308 report[8] = right_speed >> 8;
309 report[9] = left_gain;
310 report[10] = right_gain;
312 return steam_send_report(steam, report, sizeof(report));
735 * only ones with a feature report.
1344 struct hid_report *report, u8 *data,