Changeset c6588ce in mainline for uspace/lib/usbvirt/src/ipc_hc.c


Ignore:
Timestamp:
2012-05-05T08:12:17Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ee04c28
Parents:
2cc7f16 (diff), d21e935c (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/lib/usbvirt/src/ipc_hc.c

    r2cc7f16 rc6588ce  
    3838#include <assert.h>
    3939#include <async.h>
    40 #include <devman.h>
    4140#include <usbvirt/device.h>
    4241#include <usbvirt/ipc.h>
     
    8180        if (rc != EOK) {
    8281                async_exchange_end(exch);
    83                 async_wait_for(opening_request, NULL);
     82                async_forget(opening_request);
    8483                return rc;
    8584        }
     
    9291       
    9392        if (data_request == 0) {
    94                 async_wait_for(opening_request, NULL);
     93                async_forget(opening_request);
    9594                return ENOMEM;
    9695        }
     
    154153        if (rc != EOK) {
    155154                async_exchange_end(exch);
    156                 async_wait_for(opening_request, NULL);
     155                async_forget(opening_request);
    157156                return rc;
    158157        }
     
    162161                if (rc != EOK) {
    163162                        async_exchange_end(exch);
    164                         async_wait_for(opening_request, NULL);
     163                        async_forget(opening_request);
    165164                        return rc;
    166165                }
     
    227226       
    228227        if (data_request == 0) {
    229                 async_wait_for(opening_request, NULL);
     228                async_forget(opening_request);
    230229                return ENOMEM;
    231230        }
     
    302301       
    303302        if (rc != EOK) {
    304                 async_wait_for(opening_request, NULL);
     303                async_forget(opening_request);
    305304                return rc;
    306305        }
Note: See TracChangeset for help on using the changeset viewer.