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/mbr_part/mbr_part.c

    r3feeab2 rff381a7  
    210210        }
    211211
    212         rc = block_init(EXCHANGE_SERIALIZE, indev_sid, 2048);
     212        rc = block_init(indev_sid, 2048);
    213213        if (rc != EOK)  {
    214214                printf(NAME ": could not init libblock.\n");
     
    235235
    236236        /* Register server with location service. */
    237         async_set_client_connection(mbr_connection);
     237        async_set_fallback_port_handler(mbr_connection, NULL);
    238238        rc = loc_server_register(NAME);
    239239        if (rc != EOK) {
     
    416416
    417417        /* Get the device handle. */
    418         dh = IPC_GET_ARG1(*icall);
    419 
    420         /* 
     418        dh = IPC_GET_ARG2(*icall);
     419
     420        /*
    421421         * Determine which partition device is the client connecting to.
    422422         * A linear search is not terribly fast, but we only do this
Note: See TracChangeset for help on using the changeset viewer.