Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/main.c

    rc1694b6b rf9b2cb4c  
    4242#include <stdio.h>
    4343#include <errno.h>
    44 #include <str_error.h>
    4544#include <stdbool.h>
    4645#include <fibril_synch.h>
     
    319318        int rc = log_init(NAME);
    320319        if (rc != EOK) {
    321                 printf("%s: Error initializing logging subsystem: %s\n", NAME, str_error(rc));
     320                printf("%s: Error initializing logging subsystem.\n", NAME);
    322321                return rc;
    323322        }
     
    330329        rc = async_create_port(INTERFACE_DDF_DRIVER,
    331330            devman_connection_driver, NULL, &port);
    332         if (rc != EOK) {
    333                 printf("%s: Error creating DDF driver port: %s\n", NAME, str_error(rc));
    334                 return rc;
    335         }
     331        if (rc != EOK)
     332                return rc;
    336333       
    337334        rc = async_create_port(INTERFACE_DDF_CLIENT,
    338335            devman_connection_client, NULL, &port);
    339         if (rc != EOK) {
    340                 printf("%s: Error creating DDF client port: %s\n", NAME, str_error(rc));
    341                 return rc;
    342         }
     336        if (rc != EOK)
     337                return rc;
    343338       
    344339        rc = async_create_port(INTERFACE_DEVMAN_DEVICE,
    345340            devman_connection_device, NULL, &port);
    346         if (rc != EOK) {
    347                 printf("%s: Error creating devman device port: %s\n", NAME, str_error(rc));
    348                 return rc;
    349         }
     341        if (rc != EOK)
     342                return rc;
    350343       
    351344        rc = async_create_port(INTERFACE_DEVMAN_PARENT,
    352345            devman_connection_parent, NULL, &port);
    353         if (rc != EOK) {
    354                 printf("%s: Error creating devman parent port: %s\n", NAME, str_error(rc));
    355                 return rc;
    356         }
     346        if (rc != EOK)
     347                return rc;
    357348       
    358349        async_set_fallback_port_handler(devman_forward, NULL);
     
    366357        rc = service_register(SERVICE_DEVMAN);
    367358        if (rc != EOK) {
    368                 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering as a service: %s", str_error(rc));
     359                log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering as a service.");
    369360                return rc;
    370361        }
Note: See TracChangeset for help on using the changeset viewer.