1/*
2 * Copyright (c) 2007-2013 ETH Zurich.
3 * All rights reserved.
4 *
5 * This file is distributed under the terms in the attached LICENSE file.
6 * If you do not find this file, copies can be found by writing to:
7 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
8 */
9
10#ifndef USB_OHCI_ROOT_HUB_H_
11#define USB_OHCI_ROOT_HUB_H_
12/*
13 * =======================================================================
14 * This file contains the declarations for the OHCI root hub
15 * =======================================================================
16 */
17
18
19
20usb_error_t usb_ohci_roothub_exec(struct usb_device *device,
21          struct usb_device_request *req, const void **pptr, uint16_t *plength);
22void usb_ohci_root_hub_interrupt(usb_ohci_hc_t *hc);
23#endif /* USB_OHCI_ROOT_HUB_H_ */
24