diff mbox

[U-Boot,v2,1/4] tegra: usb gadget: fix ci udc operation if not hostpc capable

Message ID 1473891271-17483-2-git-send-email-marcel.ziswiler@toradex.com
State Accepted
Commit 7e1784651b057136847259358a3383c148d6f374
Delegated to: Tom Warren
Headers show

Commit Message

Marcel Ziswiler Sept. 14, 2016, 10:14 p.m. UTC
The Tegra 2 aka T20 is not host PC capable. Therefore gate the define
CONFIG_CI_UDC_HAS_HOSTPC in tegra-common-usb-gadget.h in case of
CONFIG_TEGRA20.

Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>

---

Changes in v2:
- As suggested by Stephen gating the CONFIG_CI_UDC_HAS_HOSTPC define
  with CONFIG_TEGRA20 rather than duplicating the same into all other
  SoC type specific header files.

 include/configs/tegra-common-usb-gadget.h | 2 ++
 1 file changed, 2 insertions(+)

Comments

Stephen Warren Sept. 14, 2016, 11:08 p.m. UTC | #1
On 09/14/2016 04:14 PM, Marcel Ziswiler wrote:
> The Tegra 2 aka T20 is not host PC capable. Therefore gate the define
> CONFIG_CI_UDC_HAS_HOSTPC in tegra-common-usb-gadget.h in case of
> CONFIG_TEGRA20.
>
> Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>

Acked-by: Stephen Warren <swarren@nvidia.com>
diff mbox

Patch

diff --git a/include/configs/tegra-common-usb-gadget.h b/include/configs/tegra-common-usb-gadget.h
index 3e3eeea..2e492c1 100644
--- a/include/configs/tegra-common-usb-gadget.h
+++ b/include/configs/tegra-common-usb-gadget.h
@@ -10,7 +10,9 @@ 
 
 #ifndef CONFIG_SPL_BUILD
 /* USB gadget mode support*/
+#ifndef CONFIG_TEGRA20
 #define CONFIG_CI_UDC_HAS_HOSTPC
+#endif
 /* USB mass storage protocol */
 #define CONFIG_USB_FUNCTION_MASS_STORAGE
 /* DFU protocol */