Changeset 6fbd1f9 in mainline for uspace/srv/hid/display/input.c
- Timestamp:
- 2024-10-14T16:30:24Z (9 months ago)
- Branches:
- master
- Children:
- 514108e
- Parents:
- b3b79981
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/input.c
rb3b79981 r6fbd1f9 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 40 40 #include <str_error.h> 41 41 #include "display.h" 42 #include "ievent.h" 42 43 #include "input.h" 43 44 #include "main.h" … … 87 88 88 89 ds_display_lock(disp); 89 rc = ds_ display_post_kbd_event(disp, &event);90 rc = ds_ievent_post_kbd(disp, &event); 90 91 ds_display_unlock(disp); 91 92 return rc; … … 104 105 105 106 ds_display_lock(disp); 106 rc = ds_ display_post_ptd_event(disp, &event);107 rc = ds_ievent_post_ptd(disp, &event); 107 108 ds_display_unlock(disp); 108 109 return rc; … … 126 127 127 128 ds_display_lock(disp); 128 rc = ds_ display_post_ptd_event(disp, &event);129 rc = ds_ievent_post_ptd(disp, &event); 129 130 ds_display_unlock(disp); 130 131 return rc; … … 145 146 146 147 ds_display_lock(disp); 147 rc = ds_ display_post_ptd_event(disp, &event);148 rc = ds_ievent_post_ptd(disp, &event); 148 149 ds_display_unlock(disp); 149 150 return rc; … … 163 164 164 165 ds_display_lock(disp); 165 rc = ds_ display_post_ptd_event(disp, &event);166 rc = ds_ievent_post_ptd(disp, &event); 166 167 ds_display_unlock(disp); 167 168 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.