XenevaOS
Loading...
Searching...
No Matches
port.h
Go to the documentation of this file.
1
30#ifndef __PORT_H__
31#define __PORT_H__
32
33#include "xhci.h"
34
35
36/*
37 * XHCIPortInitialise -- initialise a given port
38 * @param dev -- Pointer to XHCIDevice
39 * @param port -- port number
40 */
41extern void XHCIPortInitialise(XHCIDevice* dev, unsigned int port);
42
43/*
44* XHCIStartDefaultPorts -- initializes all powered ports
45* @param dev -- Pointer to USB device structures
46*/
47extern void XHCIStartDefaultPorts(XHCIDevice* dev);
48
49#endif
void XHCIStartDefaultPorts(XHCIDevice *dev)
Definition port.cpp:634
void XHCIPortInitialise(XHCIDevice *dev, unsigned int port)
Definition port.cpp:293
Definition xhci.h:407