1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

fix a kconfig usage bug

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8027 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2007-07-18 11:49:10 +00:00
parent bf9b79b200
commit cd1737cbbd

View File

@@ -50,17 +50,14 @@ define KernelPackage/usb-uhci
$(call usbdep,) $(call usbdep,)
TITLE:=Support for UHCI controllers TITLE:=Support for UHCI controllers
DESCRIPTION:=Kernel support for USB UHCI controllers DESCRIPTION:=Kernel support for USB UHCI controllers
KCONFIG:=CONFIG_USB_UHCI_ALT CONFIG_USB_UHCI_HCD
endef endef
define KernelPackage/usb-uhci/2.4 define KernelPackage/usb-uhci/2.4
FILES:=$(LINUX_DIR)/drivers/usb/host/uhci.o FILES:=$(LINUX_DIR)/drivers/usb/host/uhci.o
KCONFIG:=CONFIG_USB_UHCI_ALT
AUTOLOAD:=$(call AutoLoad,50,uhci) AUTOLOAD:=$(call AutoLoad,50,uhci)
endef endef
define KernelPackage/usb-uhci/2.6 define KernelPackage/usb-uhci/2.6
FILES:=$(LINUX_DIR)/drivers/usb/host/uhci-hcd.ko FILES:=$(LINUX_DIR)/drivers/usb/host/uhci-hcd.ko
KCONFIG:=CONFIG_USB_UHCI_HCD
AUTOLOAD:=$(call AutoLoad,50,uhci-hcd) AUTOLOAD:=$(call AutoLoad,50,uhci-hcd)
endef endef
$(eval $(call KernelPackage,usb-uhci)) $(eval $(call KernelPackage,usb-uhci))