mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-05-19 10:51:17 +00:00
[PATCH] USB: allow multiple types of EHCI controllers to be built as modules
In some systems we may have both a platform EHCI controller and PCI EHCI controller. Previously we couldn't build the EHCI support as a module due to conflicting module_init() calls in the code. Signed-off-by: Kumar Gala <galak@kernel.crashing.org> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
df47e5330b
commit
01cced2507
@@ -186,7 +186,7 @@ struct platform_device ppc_sys_platform_devices[] = {
|
||||
},
|
||||
},
|
||||
[MPC83xx_USB2_DR] = {
|
||||
.name = "fsl-usb2-dr",
|
||||
.name = "fsl-ehci",
|
||||
.id = 1,
|
||||
.num_resources = 2,
|
||||
.resource = (struct resource[]) {
|
||||
@@ -203,8 +203,8 @@ struct platform_device ppc_sys_platform_devices[] = {
|
||||
},
|
||||
},
|
||||
[MPC83xx_USB2_MPH] = {
|
||||
.name = "fsl-usb2-mph",
|
||||
.id = 1,
|
||||
.name = "fsl-ehci",
|
||||
.id = 2,
|
||||
.num_resources = 2,
|
||||
.resource = (struct resource[]) {
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user