Changeset c0ec9e7 in mainline


Ignore:
Timestamp:
2017-08-17T17:33:18Z (7 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
176a70a
Parents:
e4001f7
Message:

Added hooks for endpoint management.

Location:
uspace/drv/bus/usb/xhci
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/Makefile

    re4001f7 rc0ec9e7  
    4343SOURCES = \
    4444        hc.c \
     45        endpoint.c \
    4546        debug.c \
    4647        trb_ring.c \
  • uspace/drv/bus/usb/xhci/main.c

    re4001f7 rc0ec9e7  
    4242
    4343#include "hc.h"
     44#include "endpoint.h"
    4445
    4546#define NAME "xhci"
     
    6566                .schedule       = hcd_schedule,
    6667                .irq_hook       = hcd_interrupt,
     68                .ep_add_hook    = endpoint_init,
     69                .ep_remove_hook = endpoint_fini,
    6770                .status_hook    = hcd_status,
    6871        }
Note: See TracChangeset for help on using the changeset viewer.