Changeset 7b616e2 in mainline for uspace/lib/drv/generic/driver.c
- Timestamp:
- 2017-09-27T22:40:09Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d076f16
- Parents:
- 8d6bcc8c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/driver.c
r8d6bcc8c r7b616e2 943 943 int rc = async_create_port(INTERFACE_DDF_DRIVER, driver_connection_driver, 944 944 NULL, &port); 945 if (rc != EOK) 945 if (rc != EOK) { 946 printf("Error: Failed to create driver port.\n"); 946 947 return rc; 948 } 947 949 948 950 rc = async_create_port(INTERFACE_DDF_DEVMAN, driver_connection_devman, 949 951 NULL, &port); 950 if (rc != EOK) 952 if (rc != EOK) { 953 printf("Error: Failed to create devman port.\n"); 951 954 return rc; 955 } 952 956 953 957 async_set_fallback_port_handler(driver_connection_client, NULL); … … 964 968 /* Return success from the task since server has started. */ 965 969 rc = task_retval(0); 966 if (rc != EOK) 970 if (rc != EOK) { 971 printf("Error: Failed returning task value.\n"); 967 972 return rc; 973 } 968 974 969 975 async_manager();
Note:
See TracChangeset
for help on using the changeset viewer.