From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lucas Stach Date: Thu, 7 Feb 2013 18:16:24 +0100 Subject: [U-Boot] [PATCH v3 1/7] tegra: usb: set USB_PORTS_MAX to correct value In-Reply-To: <1360257390-22899-1-git-send-email-dev@lynxeye.de> References: <1360257390-22899-1-git-send-email-dev@lynxeye.de> Message-ID: <1360257390-22899-2-git-send-email-dev@lynxeye.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Both Tegra20 and Tegra30 have a max of 3 USB controllers. Signed-off-by: Lucas Stach Acked-by: Simon Glass --- arch/arm/cpu/armv7/tegra20/usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/cpu/armv7/tegra20/usb.c b/arch/arm/cpu/armv7/tegra20/usb.c index 1bccf2b..f151fb2 100644 --- a/arch/arm/cpu/armv7/tegra20/usb.c +++ b/arch/arm/cpu/armv7/tegra20/usb.c @@ -44,7 +44,7 @@ #endif enum { - USB_PORTS_MAX = 4, /* Maximum ports we allow */ + USB_PORTS_MAX = 3, /* Maximum ports we allow */ }; /* Parameters we need for USB */ -- 1.8.1