genode/dde_linux/src/drivers/usb/main.cc
Sebastian Sumpf 6ef3f0f153 usb: Move driver into library
This raised the opportunity to structure the library more cleanly for each
supported platform.
2013-02-25 16:45:49 +01:00

13 lines
175 B
C++

/*
* \brief Startup USB driver library
* \author Sebastian Sumpf
* \date 2013-02-20
*/
int main()
{
extern void start_usb_driver();
start_usb_driver();
return 0;
}