Ignore:
Timestamp:
2015-11-02T20:54:19Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d8513177
Parents:
3feeab2 (diff), 5265eea4 (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 mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/bd/part/guid_part/guid_part.c

    r3feeab2 rff381a7  
    160160        }
    161161
    162         rc = block_init(EXCHANGE_SERIALIZE, indev_sid, 2048);
     162        rc = block_init(indev_sid, 2048);
    163163        if (rc != EOK)  {
    164164                printf(NAME ": could not init libblock.\n");
     
    185185
    186186        /* Register server with location service. */
    187         async_set_client_connection(gpt_connection);
     187        async_set_fallback_port_handler(gpt_connection, NULL);
    188188        rc = loc_server_register(NAME);
    189189        if (rc != EOK) {
     
    339339
    340340        /* Get the device handle. */
    341         dh = IPC_GET_ARG1(*icall);
    342 
    343         /* 
     341        dh = IPC_GET_ARG2(*icall);
     342
     343        /*
    344344         * Determine which partition device is the client connecting to.
    345345         * A linear search is not terribly fast, but we only do this
Note: See TracChangeset for help on using the changeset viewer.