diff options
| author | Benoît Thébaudeau <benoit.thebaudeau@advansee.com> | 2012-07-19 22:16:38 +0200 | 
|---|---|---|
| committer | Marek Vasut <marex@denx.de> | 2012-09-01 16:21:50 +0200 | 
| commit | cdeb916120a43c1bfe3de1a6d84ea403d43e59d5 (patch) | |
| tree | f2f59042fdfa1ed679374eb29a8de89dd7764e6d /drivers/usb/host/ehci-hcd.c | |
| parent | 27e301e5b7df6254c768d27130d3a36c31d55c96 (diff) | |
| download | olio-uboot-2014.01-cdeb916120a43c1bfe3de1a6d84ea403d43e59d5.tar.xz olio-uboot-2014.01-cdeb916120a43c1bfe3de1a6d84ea403d43e59d5.zip | |
ehci: cosmetic: Define the number of qt_buffers
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Ilya Yanok <ilya.yanok@cogentembedded.com>
Cc: Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
Diffstat (limited to 'drivers/usb/host/ehci-hcd.c')
| -rw-r--r-- | drivers/usb/host/ehci-hcd.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 2a82a2912..5b3b9062f 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c @@ -183,7 +183,7 @@ static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)  	flush_dcache_range(addr, ALIGN(addr + sz, ARCH_DMA_MINALIGN));  	idx = 0; -	while (idx < 5) { +	while (idx < QT_BUFFER_CNT) {  		td->qt_buffer[idx] = cpu_to_hc32(addr);  		td->qt_buffer_hi[idx] = 0;  		next = (addr + 4096) & ~4095; @@ -195,7 +195,7 @@ static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)  		idx++;  	} -	if (idx == 5) { +	if (idx == QT_BUFFER_CNT) {  		printf("out of buffer pointers (%u bytes left)\n", sz);  		return -1;  	} |