Lines Matching refs:report
301 u8 report[11] = {STEAM_CMD_HAPTIC_RUMBLE, 9}; in steam_haptic_rumble() local
303 report[3] = intensity & 0xFF; in steam_haptic_rumble()
304 report[4] = intensity >> 8; in steam_haptic_rumble()
305 report[5] = left_speed & 0xFF; in steam_haptic_rumble()
306 report[6] = left_speed >> 8; in steam_haptic_rumble()
307 report[7] = right_speed & 0xFF; in steam_haptic_rumble()
308 report[8] = right_speed >> 8; in steam_haptic_rumble()
309 report[9] = left_gain; in steam_haptic_rumble()
310 report[10] = right_gain; in steam_haptic_rumble()
312 return steam_send_report(steam, report, sizeof(report)); in steam_haptic_rumble()
1344 struct hid_report *report, u8 *data, in steam_raw_event() argument