aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/usb/misc/Kconfig5
-rw-r--r--drivers/usb/misc/Makefile1
-rw-r--r--drivers/usb/misc/ezusb.c (renamed from drivers/usb/serial/ezusb.c)0
-rw-r--r--drivers/usb/serial/Kconfig13
-rw-r--r--drivers/usb/serial/Makefile1
5 files changed, 10 insertions, 10 deletions
diff --git a/drivers/usb/misc/Kconfig b/drivers/usb/misc/Kconfig
index 1bfcd02ebeb5..a8f05239350e 100644
--- a/drivers/usb/misc/Kconfig
+++ b/drivers/usb/misc/Kconfig
@@ -244,3 +244,8 @@ config USB_YUREX
244 To compile this driver as a module, choose M here: the 244 To compile this driver as a module, choose M here: the
245 module will be called yurex. 245 module will be called yurex.
246 246
247config USB_EZUSB_FX2
248 tristate "Functions for loading firmware on EZUSB chips"
249 help
250 Say Y here if you need EZUSB device support.
251 (Cypress FX/FX2/FX2LP microcontrollers)
diff --git a/drivers/usb/misc/Makefile b/drivers/usb/misc/Makefile
index 796ce7ebccc8..3e99a643294b 100644
--- a/drivers/usb/misc/Makefile
+++ b/drivers/usb/misc/Makefile
@@ -11,6 +11,7 @@ obj-$(CONFIG_USB_CYPRESS_CY7C63) += cypress_cy7c63.o
11obj-$(CONFIG_USB_CYTHERM) += cytherm.o 11obj-$(CONFIG_USB_CYTHERM) += cytherm.o
12obj-$(CONFIG_USB_EMI26) += emi26.o 12obj-$(CONFIG_USB_EMI26) += emi26.o
13obj-$(CONFIG_USB_EMI62) += emi62.o 13obj-$(CONFIG_USB_EMI62) += emi62.o
14obj-$(CONFIG_USB_EZUSB_FX2) += ezusb.o
14obj-$(CONFIG_USB_FTDI_ELAN) += ftdi-elan.o 15obj-$(CONFIG_USB_FTDI_ELAN) += ftdi-elan.o
15obj-$(CONFIG_USB_IDMOUSE) += idmouse.o 16obj-$(CONFIG_USB_IDMOUSE) += idmouse.o
16obj-$(CONFIG_USB_IOWARRIOR) += iowarrior.o 17obj-$(CONFIG_USB_IOWARRIOR) += iowarrior.o
diff --git a/drivers/usb/serial/ezusb.c b/drivers/usb/misc/ezusb.c
index 4223d761223d..4223d761223d 100644
--- a/drivers/usb/serial/ezusb.c
+++ b/drivers/usb/misc/ezusb.c
diff --git a/drivers/usb/serial/Kconfig b/drivers/usb/serial/Kconfig
index f604f707a058..76f462241738 100644
--- a/drivers/usb/serial/Kconfig
+++ b/drivers/usb/serial/Kconfig
@@ -42,11 +42,6 @@ config USB_SERIAL_CONSOLE
42 42
43 If unsure, say N. 43 If unsure, say N.
44 44
45config USB_EZUSB
46 bool "Functions for loading firmware on EZUSB chips"
47 help
48 Say Y here if you need EZUSB device support.
49
50config USB_SERIAL_GENERIC 45config USB_SERIAL_GENERIC
51 bool "USB Generic Serial Driver" 46 bool "USB Generic Serial Driver"
52 help 47 help
@@ -94,7 +89,7 @@ config USB_SERIAL_CH341
94 89
95config USB_SERIAL_WHITEHEAT 90config USB_SERIAL_WHITEHEAT
96 tristate "USB ConnectTech WhiteHEAT Serial Driver" 91 tristate "USB ConnectTech WhiteHEAT Serial Driver"
97 select USB_EZUSB 92 select USB_EZUSB_FX2
98 help 93 help
99 Say Y here if you want to use a ConnectTech WhiteHEAT 4 port 94 Say Y here if you want to use a ConnectTech WhiteHEAT 4 port
100 USB to serial converter device. 95 USB to serial converter device.
@@ -281,7 +276,7 @@ config USB_SERIAL_IUU
281 276
282config USB_SERIAL_KEYSPAN_PDA 277config USB_SERIAL_KEYSPAN_PDA
283 tristate "USB Keyspan PDA Single Port Serial Driver" 278 tristate "USB Keyspan PDA Single Port Serial Driver"
284 select USB_EZUSB 279 select USB_EZUSB_FX2
285 help 280 help
286 Say Y here if you want to use a Keyspan PDA single port USB to 281 Say Y here if you want to use a Keyspan PDA single port USB to
287 serial converter device. This driver makes use of firmware 282 serial converter device. This driver makes use of firmware
@@ -292,7 +287,7 @@ config USB_SERIAL_KEYSPAN_PDA
292 287
293config USB_SERIAL_KEYSPAN 288config USB_SERIAL_KEYSPAN
294 tristate "USB Keyspan USA-xxx Serial Driver" 289 tristate "USB Keyspan USA-xxx Serial Driver"
295 select USB_EZUSB 290 select USB_EZUSB_FX2
296 ---help--- 291 ---help---
297 Say Y here if you want to use Keyspan USB to serial converter 292 Say Y here if you want to use Keyspan USB to serial converter
298 devices. This driver makes use of Keyspan's official firmware 293 devices. This driver makes use of Keyspan's official firmware
@@ -596,7 +591,7 @@ config USB_SERIAL_CYBERJACK
596 591
597config USB_SERIAL_XIRCOM 592config USB_SERIAL_XIRCOM
598 tristate "USB Xircom / Entregra Single Port Serial Driver" 593 tristate "USB Xircom / Entregra Single Port Serial Driver"
599 select USB_EZUSB 594 select USB_EZUSB_FX2
600 help 595 help
601 Say Y here if you want to use a Xircom or Entregra single port USB to 596 Say Y here if you want to use a Xircom or Entregra single port USB to
602 serial converter device. This driver makes use of firmware 597 serial converter device. This driver makes use of firmware
diff --git a/drivers/usb/serial/Makefile b/drivers/usb/serial/Makefile
index 45871f9ad1e1..3b3e7308d476 100644
--- a/drivers/usb/serial/Makefile
+++ b/drivers/usb/serial/Makefile
@@ -9,7 +9,6 @@ obj-$(CONFIG_USB_SERIAL) += usbserial.o
9usbserial-y := usb-serial.o generic.o bus.o 9usbserial-y := usb-serial.o generic.o bus.o
10 10
11usbserial-$(CONFIG_USB_SERIAL_CONSOLE) += console.o 11usbserial-$(CONFIG_USB_SERIAL_CONSOLE) += console.o
12usbserial-$(CONFIG_USB_EZUSB) += ezusb.o
13 12
14obj-$(CONFIG_USB_SERIAL_AIRCABLE) += aircable.o 13obj-$(CONFIG_USB_SERIAL_AIRCABLE) += aircable.o
15obj-$(CONFIG_USB_SERIAL_ARK3116) += ark3116.o 14obj-$(CONFIG_USB_SERIAL_ARK3116) += ark3116.o