Commit 9189bfc2 authored by Oliver Bock's avatar Oliver Bock Committed by Greg Kroah-Hartman

[PATCH] USB: rename Cypress CY7C63xxx driver to proper name and fix up some tiny things

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: default avatarOliver Bock <o.bock@fh-wolfenbuettel.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 58a5b0a6
...@@ -48,7 +48,7 @@ obj-$(CONFIG_USB_MICROTEK) += image/ ...@@ -48,7 +48,7 @@ obj-$(CONFIG_USB_MICROTEK) += image/
obj-$(CONFIG_USB_SERIAL) += serial/ obj-$(CONFIG_USB_SERIAL) += serial/
obj-$(CONFIG_USB_AUERSWALD) += misc/ obj-$(CONFIG_USB_AUERSWALD) += misc/
obj-$(CONFIG_USB_CY7C63) += misc/ obj-$(CONFIG_USB_CYPRESS_CY7C63)+= misc/
obj-$(CONFIG_USB_CYTHERM) += misc/ obj-$(CONFIG_USB_CYTHERM) += misc/
obj-$(CONFIG_USB_EMI26) += misc/ obj-$(CONFIG_USB_EMI26) += misc/
obj-$(CONFIG_USB_EMI62) += misc/ obj-$(CONFIG_USB_EMI62) += misc/
......
...@@ -88,19 +88,19 @@ config USB_LED ...@@ -88,19 +88,19 @@ config USB_LED
To compile this driver as a module, choose M here: the To compile this driver as a module, choose M here: the
module will be called usbled. module will be called usbled.
config USB_CY7C63 config USB_CYPRESS_CY7C63
tristate "Cypress CY7C63xxx USB driver support" tristate "Cypress CY7C63xxx USB driver support"
depends on USB depends on USB
help help
Say Y here if you want to connect a Cypress CY7C63xxx Say Y here if you want to connect a Cypress CY7C63xxx
micro controller to your computer's USB port. This driver micro controller to your computer's USB port. Currently this
supports the pre-programmed devices (incl. firmware) by driver supports the pre-programmed devices (incl. firmware)
AK Modul-Bus Computer GmbH. by AK Modul-Bus Computer GmbH.
Please see: http://www.ak-modul-bus.de/stat/mikrocontroller.html Please see: http://www.ak-modul-bus.de/stat/mikrocontroller.html
To compile this driver as a module, choose M here: the To compile this driver as a module, choose M here: the
module will be called cy7c63. module will be called cypress_cy7c63.
config USB_CYTHERM config USB_CYTHERM
tristate "Cypress USB thermometer driver support" tristate "Cypress USB thermometer driver support"
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
obj-$(CONFIG_USB_AUERSWALD) += auerswald.o obj-$(CONFIG_USB_AUERSWALD) += auerswald.o
obj-$(CONFIG_USB_CY7C63) += cy7c63.o obj-$(CONFIG_USB_CYPRESS_CY7C63)+= cypress_cy7c63.o
obj-$(CONFIG_USB_CYTHERM) += cytherm.o obj-$(CONFIG_USB_CYTHERM) += cytherm.o
obj-$(CONFIG_USB_EMI26) += emi26.o obj-$(CONFIG_USB_EMI26) += emi26.o
obj-$(CONFIG_USB_EMI62) += emi62.o obj-$(CONFIG_USB_EMI62) += emi62.o
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment