Changeset dc5c303 in mainline for uspace/srv/hid/isdv4_tablet/main.c
- Timestamp:
- 2023-12-28T13:59:23Z (15 months ago)
- Children:
- 6b66de6b
- Parents:
- 42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
- git-committer:
- GitHub <noreply@…> (2023-12-28 13:59:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/isdv4_tablet/main.c
r42c2e65 rdc5c303 1 1 /* 2 * Copyright (c) 2023 Jiri Svoboda 2 3 * Copyright (c) 2012 Martin Sucha 3 4 * All rights reserved. … … 184 185 serial_t *serial; 185 186 char *serial_port_name = NULL; 187 loc_srv_t *srv; 186 188 187 189 int arg = 1; … … 315 317 316 318 async_set_fallback_port_handler(mouse_connection, NULL); 317 rc = loc_server_register(NAME );319 rc = loc_server_register(NAME, &srv); 318 320 if (rc != EOK) { 319 321 printf("%s: Unable to register driver.\n", NAME); … … 329 331 } 330 332 331 rc = loc_service_register(service_name, &service_id); 332 if (rc != EOK) { 333 rc = loc_service_register(srv, service_name, &service_id); 334 if (rc != EOK) { 335 loc_server_unregister(srv); 333 336 printf(NAME ": Unable to register service %s.\n", service_name); 334 337 return rc; … … 340 343 printf(NAME ": Unable to get mouse category id.\n"); 341 344 } else { 342 rc = loc_service_add_to_cat(s ervice_id, mouse_category);345 rc = loc_service_add_to_cat(srv, service_id, mouse_category); 343 346 if (rc != EOK) { 344 347 printf(NAME ": Unable to add device to mouse category.\n");
Note:
See TracChangeset
for help on using the changeset viewer.