From 492ea28fc9946476484e8c428e9364643d4442a4 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Fri, 12 Oct 2012 19:56:15 +0200 Subject: [PATCH] usb4bsd/ehci: Ouch, fix a bug in the Makefile. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/bus/u4b/controller/ehci/Makefile b/sys/bus/u4b/controller/ehci/Makefile index da718d6970..817cdaa36f 100644 --- 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 -- 2.41.0