Ignore:
Timestamp:
2013-08-19T17:23:31Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4da8fdb
Parents:
2921602 (diff), 4a9728ec (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.
Message:

Merge audio support.

Includes audio server and sb16 driver.

Tested on ia32 and amd64 (qemu).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/compositor/compositor.c

    r2921602 rab92305  
    21722172        /* Establish input bidirectional connection. */
    21732173        rc = input_connect(input_svc);
    2174         if (rc != EOK)
     2174        if (rc != EOK) {
     2175                printf("%s: Failed to connect to input service.\n", NAME);
    21752176                return rc;
     2177        }
    21762178
    21772179        /* Create viewports and connect them to visualizers. */
     
    21792181        rc = loc_category_get_id("visualizer", &cat_id, IPC_FLAG_BLOCKING);
    21802182        if (rc != EOK) {
     2183                printf("%s: Failed to get visualizer category.\n", NAME);
    21812184                input_disconnect();
    21822185                return -1;
     
    21872190        rc = loc_category_get_svcs(cat_id, &svcs, &svcs_cnt);
    21882191        if (rc != EOK || svcs_cnt == 0) {
     2192                printf("%s: Failed to get visualizer category services.\n", NAME);
    21892193                input_disconnect();
    21902194                return -1;
     
    22032207       
    22042208        if (list_empty(&viewport_list)) {
     2209                printf("%s: Failed to get view ports.\n", NAME);
    22052210                input_disconnect();
    22062211                return -1;
Note: See TracChangeset for help on using the changeset viewer.