port more changes to make PCI work
[linux-2.4.git] / drivers / usb / host / ehci-q.c
index 1be8bfa..3eb66ba 100644 (file)
@@ -64,9 +64,15 @@ qtd_fill (struct ehci_qtd *qtd, dma_addr_t buf, size_t len,
                        addr = buf;
                        qtd->hw_buf [i] = cpu_to_le32 ((u32)addr);
                        qtd->hw_buf_hi [i] = cpu_to_le32 ((u32)(addr >> 32));
+#if 0  //+Bing try try 12222004
                        buf += 0x1000;
                        if ((count + 0x1000) < len)
                                count += 0x1000;
+#else
+                       buf += 0x4000;
+                       if ((count + 0x4000) < len)
+                               count += 0x4000;
+#endif
                        else
                                count = len;
                }