Changes in uspace/drv/hid/usbhid/mouse/mousedev.c [21cd0c8:a635535] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/usbhid/mouse/mousedev.c
r21cd0c8 ra635535 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda3 2 * Copyright (c) 2011 Lubos Slovak, Vojtech Horky 4 3 * Copyright (c) 2018 Ondrej Hlavaty … … 167 166 assert(mouse_dev != NULL); 168 167 169 if (mouse_dev->mouse_sess == NULL) 170 return; 168 if (mouse_dev->mouse_sess == NULL) { 169 usb_log_warning(NAME " No console session."); 170 return; 171 } 171 172 172 173 const usb_hid_report_field_t *move_x = get_mouse_axis_move_field(
Note:
See TracChangeset
for help on using the changeset viewer.