Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/generic/driver.c

    r7b616e2 r58563585  
    943943        int rc = async_create_port(INTERFACE_DDF_DRIVER, driver_connection_driver,
    944944            NULL, &port);
    945         if (rc != EOK) {
    946                 printf("Error: Failed to create driver port.\n");
     945        if (rc != EOK)
    947946                return rc;
    948         }
    949947       
    950948        rc = async_create_port(INTERFACE_DDF_DEVMAN, driver_connection_devman,
    951949            NULL, &port);
    952         if (rc != EOK) {
    953                 printf("Error: Failed to create devman port.\n");
     950        if (rc != EOK)
    954951                return rc;
    955         }
    956952       
    957953        async_set_fallback_port_handler(driver_connection_client, NULL);
     
    968964        /* Return success from the task since server has started. */
    969965        rc = task_retval(0);
    970         if (rc != EOK) {
    971                 printf("Error: Failed returning task value.\n");
     966        if (rc != EOK)
    972967                return rc;
    973         }
    974968       
    975969        async_manager();
Note: See TracChangeset for help on using the changeset viewer.