123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*++
- Copyright (c) 2013 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- EHCI
- Abstract:
- This module implements the EHCI USB 2.0 Host Controller Driver.
- Author:
- Evan Green 18-Mar-2013
- Environment:
- Kernel
- --*/
- from menv import driver;
- function build() {
- var drv;
- var dynlibs;
- var entries;
- var name = "ehci";
- var sources;
- sources = [
- "ehci.c",
- "ehcihc.c"
- ];
- dynlibs = [
- "drivers/usb/usbcore:usbcore"
- ];
- drv = {
- "label": name,
- "inputs": sources + dynlibs,
- };
- entries = driver(drv);
- return entries;
- }
|