projects
/
dragonfly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
15f415f
)
usb4bsd/ehci: Ouch, fix a bug in the Makefile.
author
Sascha Wildner <saw@online.de>
Fri, 12 Oct 2012 17:56:15 +0000 (19:56 +0200)
committer
Sascha Wildner <saw@online.de>
Fri, 12 Oct 2012 17:56:15 +0000 (19:56 +0200)
It was taking a wrong file and this caused ehci to not properly initialize
when loaded as a module (like it is our default).
Note that this is my fault, not Markus Pfeiffer's. I had messed with the
Makefiles and it was a copy/paste error.
Reported-by: ftigeot, tuxillo
sys/bus/u4b/controller/ehci/Makefile
patch
|
blob
|
blame
|
history
diff --git
a/sys/bus/u4b/controller/ehci/Makefile
b/sys/bus/u4b/controller/ehci/Makefile
index
da718d6
..
817cdaa
100644
(file)
--- a/
sys/bus/u4b/controller/ehci/Makefile
+++ b/
sys/bus/u4b/controller/ehci/Makefile
@@
-1,6
+1,6
@@
.PATH: ${.CURDIR}/..
KMOD= ehci
-SRCS= ehci.c ohci_pci.c bus_if.h usb_if.h
+SRCS= ehci.c ehci_pci.c bus_if.h usb_if.h
.include <bsd.kmod.mk>