1. NAME

usb_add_hcd - finish generic HCD structure initialization and register

2. SYNOPSIS

int usb_add_hcd(struct usb_hcd *  hcd , unsigned int  irqnum , unsigned long  irqflags );

3. ARGUMENTS

hcd
    the usb_hcd structure to initialize

irqnum
    Interrupt line to allocate

irqflags
    Interrupt type flags

4. FINISH THE REMAINING PARTS OF GENERIC HCD INITIALIZATION

allocate the buffers of consistent memory, register the bus, request the IRQ line, and call the driverAqs reset and start routines.

5. COPYRIGHT