diff mbox

[U-Boot] powerpc/85xx: Fix USB protocol definitions for P1020RDB

Message ID 1314745535-13286-1-git-send-email-galak@kernel.crashing.org
State Accepted
Commit 1120ad600be10d4332457d871c98b1fcc61b4a0b
Delegated to: Kumar Gala
Headers show

Commit Message

Kumar Gala Aug. 30, 2011, 11:05 p.m. UTC
From: Ramneek Mehresh <ramneek.mehresh@freescale.com>

USB protocol macros (CONFIG_USB_EHCI ...) to be included only when
CONFIG_HAS_FSL_DR_USB is defined for a board. Presence of USB DR controller
should be declared along with the underlying protocol used in the controller

Signed-off-by: Ramneek Mehresh <ramneek.mehresh@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
 include/configs/P1_P2_RDB.h |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

Comments

Kumar Gala Sept. 9, 2011, 2:48 p.m. UTC | #1
On Aug 30, 2011, at 6:05 PM, Kumar Gala wrote:

> From: Ramneek Mehresh <ramneek.mehresh@freescale.com>
> 
> USB protocol macros (CONFIG_USB_EHCI ...) to be included only when
> CONFIG_HAS_FSL_DR_USB is defined for a board. Presence of USB DR controller
> should be declared along with the underlying protocol used in the controller
> 
> Signed-off-by: Ramneek Mehresh <ramneek.mehresh@freescale.com>
> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
> ---
> include/configs/P1_P2_RDB.h |    5 ++++-
> 1 files changed, 4 insertions(+), 1 deletions(-)

applied to 85xx next

- k
diff mbox

Patch

diff --git a/include/configs/P1_P2_RDB.h b/include/configs/P1_P2_RDB.h
index 3ffdb1a..043515d 100644
--- a/include/configs/P1_P2_RDB.h
+++ b/include/configs/P1_P2_RDB.h
@@ -581,6 +581,9 @@  extern unsigned long get_board_sys_clk(unsigned long dummy);
 #endif
 #endif
 
+#define CONFIG_HAS_FSL_DR_USB
+
+#if defined(CONFIG_HAS_FSL_DR_USB)
 #define CONFIG_USB_EHCI
 
 #ifdef CONFIG_USB_EHCI
@@ -588,7 +591,7 @@  extern unsigned long get_board_sys_clk(unsigned long dummy);
 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
 #define CONFIG_USB_EHCI_FSL
 #define CONFIG_USB_STORAGE
-#define CONFIG_HAS_FSL_DR_USB
+#endif
 #endif
 
 #if defined(CONFIG_MMC) || defined(CONFIG_USB_EHCI)