Am Montag, 9. Januar 2006 19:03 schrieb Jordan Crouse: > >From the "two-birds-one-stone" department, I am pleased to present USB UDC > support for both the MIPS Au1200 SoC and the Geode CS5535 south bridge. > Also, coming soon (in the next few days), OTG, which has been removed from > the usb_host patch, and put into its own patch (as per David's comments). > > This patch is against current linux-mips git, but it should apply for Linus's > tree as well. > > Regards, > Jordan > + VDBG("udc_read_bytes(): %d bytes\n", bytes); + + /* dwords first */ + for (i = 0; i < bytes / UDC_DWORD_BYTES; i++) { + *((u32*) (buf + (i<<2))) = readl(dev->rxfifo); + } Is there any reason you don't increment by 4? Regards Oliver