Lines Matching defs:b_rsp3
208 u8 b_rsp3, b_rsp4;
226 b_rsp3 = ~pad->response[3];
233 input_report_key(input, BTN_DPAD_UP, b_rsp3 & BIT(3));
234 input_report_key(input, BTN_DPAD_DOWN, b_rsp3 & BIT(1));
235 input_report_key(input, BTN_DPAD_LEFT, b_rsp3 & BIT(0));
236 input_report_key(input, BTN_DPAD_RIGHT, b_rsp3 & BIT(2));
245 input_report_key(input, BTN_THUMBL, b_rsp3 & BIT(6));
246 input_report_key(input, BTN_THUMBR, b_rsp3 & BIT(5));
247 input_report_key(input, BTN_SELECT, b_rsp3 & BIT(7));
248 input_report_key(input, BTN_START, b_rsp3 & BIT(4));
253 b_rsp3 = ~pad->response[3];
260 input_report_key(input, BTN_DPAD_UP, b_rsp3 & BIT(3));
261 input_report_key(input, BTN_DPAD_DOWN, b_rsp3 & BIT(1));
262 input_report_key(input, BTN_DPAD_LEFT, b_rsp3 & BIT(0));
263 input_report_key(input, BTN_DPAD_RIGHT, b_rsp3 & BIT(2));
274 input_report_key(input, BTN_SELECT, b_rsp3 & BIT(7));
275 input_report_key(input, BTN_START, b_rsp3 & BIT(4));