From: Li Yang Date: Fri, 14 Jul 2006 11:58:14 +0000 (+0800) Subject: USB: Fix Freescale high-speed USB host dependency X-Git-Tag: upstream/snapshot3+hdmi~38634^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a11570f2a48cbb6e10c520b46193e7b1b4b9245c;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git USB: Fix Freescale high-speed USB host dependency The high-speed USB SOC only exists on MPC834x family not MPC83xx family. Signed-off-by: Li Yang Acked-by: Kumar Gala Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 85b0b4a..d63177a 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c @@ -892,7 +892,7 @@ MODULE_LICENSE ("GPL"); #define PCI_DRIVER ehci_pci_driver #endif -#ifdef CONFIG_PPC_83xx +#ifdef CONFIG_MPC834x #include "ehci-fsl.c" #define PLATFORM_DRIVER ehci_fsl_driver #endif