diff options
| author | Peter Robinson <[email protected]> | 2018-09-16 18:22:58 +0100 |
|---|---|---|
| committer | Tom Warren <[email protected]> | 2019-02-20 09:01:43 -0700 |
| commit | cba0ae6e49085dba539d223c58d1c203a98689f0 (patch) | |
| tree | 129f3d779e4933e34c7a995060a290b0a53c5434 /include | |
| parent | d5854eb822c9ed03f343dcb2dd67680584e31f06 (diff) | |
tegra20: common: fix USB_EHCI_TXFIFO_THRESH value
All other Tegra devices that define USB_EHCI_TXFIFO_THRESH use hex
representation, fix tegra20 to be the same format.
Signed-off-by: Peter Robinson <[email protected]>
Cc: Tom Warren <[email protected]>
Cc: Stephen Warren <[email protected]>
Signed-off-by: Tom Warren <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/tegra20-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/tegra20-common.h b/include/configs/tegra20-common.h index 7f0a5292c2e..3551616cd1e 100644 --- a/include/configs/tegra20-common.h +++ b/include/configs/tegra20-common.h @@ -78,7 +78,7 @@ * parameter, the default (2) causes occasional Data Buffer Errors in OUT * packets depending on the buffer address and size. */ -#define CONFIG_USB_EHCI_TXFIFO_THRESH 10 +#define CONFIG_USB_EHCI_TXFIFO_THRESH 0x10 #define CONFIG_EHCI_IS_TDI #define CONFIG_SYS_NAND_SELF_INIT |
