Changeset 497b6f31 in mainline
- Timestamp:
- 2011-06-18T20:03:41Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9724d7f
- Parents:
- c4fb5ecd
- Files:
-
- 2 edited
- 36 moved
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/amd64/Makefile.inc
rc4fb5ecd r497b6f31 43 43 isa \ 44 44 ns8250 \ 45 ehci _hcd\45 ehci\ 46 46 ohci \ 47 uhci _hcd\48 uhci _rhd\47 uhci \ 48 uhcirh \ 49 49 usbflbk \ 50 50 usbhub \ -
uspace/Makefile
rc4fb5ecd r497b6f31 101 101 drv/test2 \ 102 102 drv/test3 \ 103 drv/ehci _hcd\103 drv/ehci \ 104 104 drv/ohci \ 105 drv/uhci _hcd\106 drv/uhci _rhd\105 drv/uhci \ 106 drv/uhcirh \ 107 107 drv/usbflbk \ 108 108 drv/usbhid \ -
uspace/drv/ehci/Makefile
rc4fb5ecd r497b6f31 38 38 -I$(LIBDRV_PREFIX)/include 39 39 40 BINARY = ehci _hcd40 BINARY = ehci 41 41 42 42 SOURCES = \ -
uspace/drv/ehci/ehci.h
rc4fb5ecd r497b6f31 38 38 #include <usbhc_iface.h> 39 39 40 #define NAME "ehci _hcd"40 #define NAME "ehci" 41 41 42 42 extern usbhc_iface_t ehci_hc_iface; -
uspace/drv/uhci/Makefile
rc4fb5ecd r497b6f31 38 38 -I$(LIBDRV_PREFIX)/include 39 39 40 BINARY = uhci _hcd40 BINARY = uhci 41 41 42 42 SOURCES = \ -
uspace/drv/uhci/main.c
rc4fb5ecd r497b6f31 41 41 #include "uhci.h" 42 42 43 #define NAME "uhci _hcd"43 #define NAME "uhci" 44 44 45 45 static int uhci_add_device(ddf_dev_t *device); -
uspace/drv/uhcirh/Makefile
rc4fb5ecd r497b6f31 38 38 -I$(LIBDRV_PREFIX)/include 39 39 40 BINARY = uhci _rhd40 BINARY = uhcirh 41 41 42 42 SOURCES = \ -
uspace/drv/uhcirh/main.c
rc4fb5ecd r497b6f31 46 46 #include "root_hub.h" 47 47 48 #define NAME "uhci _rhd"48 #define NAME "uhcirh" 49 49 50 50 static int hc_get_my_registers(const ddf_dev_t *dev,
Note:
See TracChangeset
for help on using the changeset viewer.