-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
usb: move ci13xxx and related code to drivers/usb/chipidea
Since chipidea is a dual role controller, it makes sense to move it to its own directory, where we can also have host, otg and platform code related to this controller. It also makes sense to break out the driver into several compilation units like udc, host, debugging code, etc. Firstly, let's move the udc and platform code to drivers/usb/chipidea. Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Alexander Shishkin
authored and
Greg Kroah-Hartman
committed
May 11, 2012
1 parent
ce9d6fb
commit bc25a80
Showing
10 changed files
with
24 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
config USB_CHIPIDEA | ||
tristate "ChipIdea Highspeed Dual Role Controller" | ||
depends on USB && USB_GADGET | ||
select USB_GADGET_DUALSPEED | ||
help | ||
Say Y here if your system has a dual role high speed USB | ||
controller based on ChipIdea silicon IP. Currently, only the | ||
peripheral mode is supported. | ||
|
||
When compiled dynamically, the module will be called ci-hdrc.ko. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
obj-$(CONFIG_USB_CHIPIDEA) += ci_hdrc.o | ||
|
||
ci_hdrc-y := ci13xxx_udc.o | ||
|
||
ifneq ($(CONFIG_PCI),) | ||
obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_pci.o | ||
endif | ||
|
||
ifneq ($(CONFIG_ARCH_MSM),) | ||
obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_msm.o | ||
endif |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters