Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbhub/main.c

    rf9a0cef r4317827  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
    28 
     28#include <usb/usbdrv.h>
    2929#include <driver.h>
    3030#include <errno.h>
    31 #include <async.h>
    32 
    33 #include <usb/usbdrv.h>
    3431#include "usbhub.h"
    35 #include "usbhub_private.h"
    36 
    37 
    38 usb_general_list_t usb_hub_list;
    3932
    4033static driver_ops_t hub_driver_ops = {
     
    4740};
    4841
    49 int usb_hub_control_loop(void * noparam){
    50         while(true){
    51                 usb_hub_check_hub_changes();
    52                 async_usleep(1000 * 1000);
    53         }
    54         return 0;
    55 }
    56 
    57 
    5842int main(int argc, char *argv[])
    5943{
    60         usb_lst_init(&usb_hub_list);
    61         fid_t fid = fibril_create(usb_hub_control_loop, NULL);
    62         if (fid == 0) {
    63                 printf("%s: failed to start fibril for HUB devices\n", NAME);
    64                 return ENOMEM;
    65         }
    66         fibril_add_ready(fid);
    67 
    6844        return driver_main(&hub_driver);
    6945}
Note: See TracChangeset for help on using the changeset viewer.