We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 629b480 commit 21cd0c8Copy full SHA for 21cd0c8
uspace/drv/hid/usbhid/mouse/mousedev.c
@@ -1,4 +1,5 @@
1
/*
2
+ * Copyright (c) 2025 Jiri Svoboda
3
* Copyright (c) 2011 Lubos Slovak, Vojtech Horky
4
* Copyright (c) 2018 Ondrej Hlavaty
5
* All rights reserved.
@@ -165,10 +166,8 @@ static void usb_mouse_process_report(usb_hid_dev_t *hid_dev,
165
166
{
167
assert(mouse_dev != NULL);
168
- if (mouse_dev->mouse_sess == NULL) {
169
- usb_log_warning(NAME " No console session.");
+ if (mouse_dev->mouse_sess == NULL)
170
return;
171
- }
172
173
const usb_hid_report_field_t *move_x = get_mouse_axis_move_field(
174
hid_dev->report_id, &hid_dev->report,
0 commit comments