Home
last modified time | relevance | path

Searched refs:b_rsp3 (Results 1 – 1 of 1) sorted by relevance

/linux-6.1.9/drivers/input/joystick/
Dpsxpad-spi.c208 u8 b_rsp3, b_rsp4; in psxpad_spi_poll() local
226 b_rsp3 = ~pad->response[3]; in psxpad_spi_poll()
233 input_report_key(input, BTN_DPAD_UP, b_rsp3 & BIT(3)); in psxpad_spi_poll()
234 input_report_key(input, BTN_DPAD_DOWN, b_rsp3 & BIT(1)); in psxpad_spi_poll()
235 input_report_key(input, BTN_DPAD_LEFT, b_rsp3 & BIT(0)); in psxpad_spi_poll()
236 input_report_key(input, BTN_DPAD_RIGHT, b_rsp3 & BIT(2)); in psxpad_spi_poll()
245 input_report_key(input, BTN_THUMBL, b_rsp3 & BIT(6)); in psxpad_spi_poll()
246 input_report_key(input, BTN_THUMBR, b_rsp3 & BIT(5)); in psxpad_spi_poll()
247 input_report_key(input, BTN_SELECT, b_rsp3 & BIT(7)); in psxpad_spi_poll()
248 input_report_key(input, BTN_START, b_rsp3 & BIT(4)); in psxpad_spi_poll()
[all …]