 9f6933be66
			
		
	
	
	9f6933be66
	
	
	
		
			
			Because of historic reasons, there are two separate directories with V4L stuff. Most drivers are located at driver/media/video. However, some code for USB Webcams were inserted under drivers/usb/media. This makes difficult for module authors to know were things should be. Also, makes Kconfig menu confusing for normal users. This patch moves all V4L content under drivers/usb/media to drivers/media/video, and fixes Kconfig/Makefile entries. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
		
			
				
	
	
		
			66 lines
		
	
	
	
		
			1.8 KiB
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			1.8 KiB
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Makefile for the kernel USB device drivers.
 | |
| #
 | |
| 
 | |
| # Object files in subdirectories
 | |
| 
 | |
| obj-$(CONFIG_USB)		+= core/
 | |
| 
 | |
| obj-$(CONFIG_USB_MON)		+= mon/
 | |
| 
 | |
| obj-$(CONFIG_PCI)		+= host/
 | |
| obj-$(CONFIG_USB_EHCI_HCD)	+= host/
 | |
| obj-$(CONFIG_USB_ISP116X_HCD)	+= host/
 | |
| obj-$(CONFIG_USB_OHCI_HCD)	+= host/
 | |
| obj-$(CONFIG_USB_UHCI_HCD)	+= host/
 | |
| obj-$(CONFIG_USB_SL811_HCD)	+= host/
 | |
| obj-$(CONFIG_ETRAX_USB_HOST)	+= host/
 | |
| obj-$(CONFIG_USB_OHCI_AT91)	+= host/
 | |
| 
 | |
| obj-$(CONFIG_USB_ACM)		+= class/
 | |
| obj-$(CONFIG_USB_PRINTER)	+= class/
 | |
| 
 | |
| obj-$(CONFIG_USB_STORAGE)	+= storage/
 | |
| obj-$(CONFIG_USB)		+= storage/
 | |
| 
 | |
| obj-$(CONFIG_USB_AIPTEK)	+= input/
 | |
| obj-$(CONFIG_USB_ATI_REMOTE)	+= input/
 | |
| obj-$(CONFIG_USB_HID)		+= input/
 | |
| obj-$(CONFIG_USB_KBD)		+= input/
 | |
| obj-$(CONFIG_USB_KBTAB)		+= input/
 | |
| obj-$(CONFIG_USB_MOUSE)		+= input/
 | |
| obj-$(CONFIG_USB_MTOUCH)	+= input/
 | |
| obj-$(CONFIG_USB_POWERMATE)	+= input/
 | |
| obj-$(CONFIG_USB_WACOM)		+= input/
 | |
| obj-$(CONFIG_USB_ACECAD)	+= input/
 | |
| obj-$(CONFIG_USB_XPAD)		+= input/
 | |
| 
 | |
| obj-$(CONFIG_USB_CATC)		+= net/
 | |
| obj-$(CONFIG_USB_KAWETH)	+= net/
 | |
| obj-$(CONFIG_USB_PEGASUS)	+= net/
 | |
| obj-$(CONFIG_USB_RTL8150)	+= net/
 | |
| obj-$(CONFIG_USB_USBNET)	+= net/
 | |
| obj-$(CONFIG_USB_ZD1201)	+= net/
 | |
| 
 | |
| obj-$(CONFIG_USB_MDC800)	+= image/
 | |
| obj-$(CONFIG_USB_MICROTEK)	+= image/
 | |
| 
 | |
| obj-$(CONFIG_USB_SERIAL)	+= serial/
 | |
| 
 | |
| obj-$(CONFIG_USB_AUERSWALD)	+= misc/
 | |
| obj-$(CONFIG_USB_CYTHERM)	+= misc/
 | |
| obj-$(CONFIG_USB_EMI26)		+= misc/
 | |
| obj-$(CONFIG_USB_EMI62)		+= misc/
 | |
| obj-$(CONFIG_USB_IDMOUSE)	+= misc/
 | |
| obj-$(CONFIG_USB_LCD)		+= misc/
 | |
| obj-$(CONFIG_USB_LD)		+= misc/
 | |
| obj-$(CONFIG_USB_LED)		+= misc/
 | |
| obj-$(CONFIG_USB_LEGOTOWER)	+= misc/
 | |
| obj-$(CONFIG_USB_RIO500)	+= misc/
 | |
| obj-$(CONFIG_USB_TEST)		+= misc/
 | |
| obj-$(CONFIG_USB_USS720)	+= misc/
 | |
| obj-$(CONFIG_USB_PHIDGETSERVO)	+= misc/
 | |
| obj-$(CONFIG_USB_SISUSBVGA)	+= misc/
 | |
| 
 | |
| obj-$(CONFIG_USB_ATM)		+= atm/
 | |
| obj-$(CONFIG_USB_SPEEDTOUCH)	+= atm/
 |