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: v2.6.18-rc4~66^2~16 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a11570f2a48cbb6e10c520b46193e7b1b4b9245c;p=karo-tx-linux.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 85b0b4ad4c16..d63177a8eaea 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