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