mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
d4c4a2e080
- Start of OHCI support - Based on new usbehci driver and Haiku USB Stack - Driver initializes the controller and retrieve number of ports svn path=/branches/usb-bringup/; revision=51851
25 lines
520 B
C++
25 lines
520 B
C++
/*
|
|
* PROJECT: ReactOS Universal Serial Bus Bulk Enhanced Host Controller Interface
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: drivers/usb/usbohci/purecall.cpp
|
|
* PURPOSE: USB OHCI device driver.
|
|
* PROGRAMMERS:
|
|
* Michael Martin (michael.martin@reactos.org)
|
|
* Johannes Anderwald (johannes.anderwald@reactos.org)
|
|
*/
|
|
|
|
#include "usbohci.h"
|
|
|
|
|
|
extern "C" {
|
|
void
|
|
__cxa_pure_virtual()
|
|
{
|
|
// put error handling here
|
|
|
|
DbgBreakPoint();
|
|
|
|
}
|
|
}
|
|
|