Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c6dd2e61d35e0fbd516c0169decc08e56619f0c6
Commit:     c6dd2e61d35e0fbd516c0169decc08e56619f0c6
Parent:     7084191d53b224b953c8e1db525ea6c31aca5fc7
Author:     Anton Vorontsov <[EMAIL PROTECTED]>
AuthorDate: Thu Feb 21 22:49:13 2008 +0300
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Thu Feb 21 15:38:56 2008 -0800

    USB: POWERPC: ehci: fix ppc build
    
    Currently, this setup:
    CONFIG_USB_ARCH_HAS_EHCI=y
    CONFIG_USB_EHCI_HCD=y
    CONFIG_USB_EHCI_HCD_PPC_OF=y
    
    Will fail to build:
      CC      drivers/usb/host/ehci-hcd.o
    drivers/usb/host/ehci-hcd.c:1018:2: error: #error "missing bus glue for 
ehci-hcd"
    make[3]: *** [drivers/usb/host/ehci-hcd.o] Error 1
    
    ehci-hcd.c actually contains OF_PLATFORM_DRIVER glue, so error is bogus.
    
    Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]>
    Acked-by: David Brownell <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 drivers/usb/host/ehci-hcd.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
index d64887b..b8ad55a 100644
--- a/drivers/usb/host/ehci-hcd.c
+++ b/drivers/usb/host/ehci-hcd.c
@@ -1014,7 +1014,7 @@ MODULE_LICENSE ("GPL");
 #endif
 
 #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \
-    !defined(PS3_SYSTEM_BUS_DRIVER)
+    !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER)
 #error "missing bus glue for ehci-hcd"
 #endif
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to