 9189bfc2df
			
		
	
	
	9189bfc2df
	
	
	
		
			
			This is a new driver for the Cypress CY7C63xxx mirco controller series. It currently supports the pre-programmed CYC63001A-PC by AK Modul-Bus GmbH. It's based on a kernel 2.4 driver (cyport) by Marcus Maul which I ported to kernel 2.6 using sysfs. I intend to support more controllers of this family (and more features) as soon as I get hold of the required IDs etc. Please see the source code's header for more information. Signed-off-by: Oliver Bock <o.bock@fh-wolfenbuettel.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			853 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			853 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Makefile for the rest of the USB drivers
 | |
| # (the ones that don't fit into any other categories)
 | |
| #
 | |
| 
 | |
| obj-$(CONFIG_USB_AUERSWALD)	+= auerswald.o
 | |
| obj-$(CONFIG_USB_CYPRESS_CY7C63)+= cypress_cy7c63.o
 | |
| obj-$(CONFIG_USB_CYTHERM)	+= cytherm.o
 | |
| obj-$(CONFIG_USB_EMI26)		+= emi26.o
 | |
| obj-$(CONFIG_USB_EMI62)		+= emi62.o
 | |
| obj-$(CONFIG_USB_IDMOUSE)	+= idmouse.o
 | |
| obj-$(CONFIG_USB_LCD)		+= usblcd.o
 | |
| obj-$(CONFIG_USB_LD)		+= ldusb.o
 | |
| obj-$(CONFIG_USB_LED)		+= usbled.o
 | |
| obj-$(CONFIG_USB_LEGOTOWER)	+= legousbtower.o
 | |
| obj-$(CONFIG_USB_PHIDGETKIT)	+= phidgetkit.o
 | |
| obj-$(CONFIG_USB_PHIDGETSERVO)	+= phidgetservo.o
 | |
| obj-$(CONFIG_USB_RIO500)	+= rio500.o
 | |
| obj-$(CONFIG_USB_TEST)		+= usbtest.o
 | |
| obj-$(CONFIG_USB_USS720)	+= uss720.o
 | |
| obj-$(CONFIG_USB_APPLEDISPLAY)	+= appledisplay.o
 | |
| 
 | |
| obj-$(CONFIG_USB_SISUSBVGA)	+= sisusbvga/
 | |
| 
 | |
| ifeq ($(CONFIG_USB_DEBUG),y)
 | |
| EXTRA_CFLAGS += -DDEBUG
 | |
| endif
 |