Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbvirt/src/ipc_hc.c

    r79ae36dd r50b581d  
    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.