Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbmast/main.c

    rd176b1d rfbcdeb8  
    300300                return;
    301301        }
    302 
    303         comm_buf = as_get_mappable_page(comm_size);
    304         if (comm_buf == NULL) {
     302       
     303        (void) async_share_out_finalize(callid, &comm_buf);
     304        if (comm_buf == (void *) -1) {
    305305                async_answer_0(callid, EHANGUP);
    306306                return;
    307307        }
    308 
    309         (void) async_share_out_finalize(callid, comm_buf);
    310 
     308       
    311309        mfun = (usbmast_fun_t *) ((ddf_fun_t *)arg)->driver_data;
    312310
Note: See TracChangeset for help on using the changeset viewer.