- 30 Jul, 2003 22 commits
-
-
Judd Montgomery authored
-
David Brownell authored
I noticed that some cases where USB produced lots of TT messages were clearly wrong, since the transactions completed cleanly (with a stall) and the TT buffer cleanup is only supposed to be needed when a CSPLIT transaction fails (for control or bulk). This patch makes the TT buffer cleanup happen only in the rarer cases where there was an error that might really need it.
-
Oliver Neukum authored
- fix timeout handling
-
Oliver Neukum authored
this cleans up locking and freeing in usblp_release and poll.
-
Greg Kroah-Hartman authored
Thanks to Joilnen Leite <knl_joi@yahoo.com.br> for pointing this out.
-
David Brownell authored
This patch: - Makes the cdc code handle a Motorola cable modem that stores CDC descriptors in the wrong place. The workaround might be helpful for other hardware too. (This was a 2.4 regression.) - Recognizes another Zaurus (PXA 255 based clamshell, not yet sold by Sharp in the US). - Cleaned the Zaurus stuff up a bit. Rather than expecting a new driver_info struct (or re-using the right one) for each new pxa based product, they all use the same one. So patches for new products only need new usb_device_id entries. (Also notes the issue that every Zaurus model will need to be blacklisted for CDC if the Z code isn't enabled.)
-
Greg Kroah-Hartman authored
-
Daniele Bellucci authored
-
Greg Kroah-Hartman authored
From pavel@ucw.cz This adds support for another handheld from sharp to 2.6.0-test1
-
Daniele Bellucci authored
-
Oliver Neukum authored
an unknown ioctl shall return ENOTTY, not EINVAL.
-
Greg Kroah-Hartman authored
Now we just throw urbs at the device as fast as we can.
-
David Brownell authored
This is a one-line "obviously correct" patch that Lutz reports is needed on one ARM platform.
-
Greg Kroah-Hartman authored
-
Greg Kroah-Hartman authored
-
Greg Kroah-Hartman authored
into kroah.com:/home/greg/linux/BK/gregkh-2.6
-
Greg Kroah-Hartman authored
From mru@users.sourceforge.net My Netgear FA120 USB2 ethernet adaptor isn't working properly with Linux 2.6.0-test1. First off, I had to modify it slightly (patch below) to make it work at all with USB2. Now I can send data at the full expected speed (~11 MB/s).
-
Greg Kroah-Hartman authored
From mru@users.sourceforge.net This trivial Makefile patch causes the AX8817x driver to actually be built.
-
Greg Kroah-Hartman authored
-
Alan Stern authored
The recent change made to the irq handling in hcd_endpoint_disable() caused a problem. The statement local_irq_save (flags); needs to be outside the rescan loop. Otherwise, on loop iterations after the first, flags is always set to indicate that interrupts are disabled. In fact, since the routine ends with might_sleep() anyway, I don't see any reason to save the interrupt state at all. My patch just disables interrupts at the start and enables them at the end. I'm not sure that's how you intended it to work, so you may want to change it a little.
-
David Brownell authored
There are two places where the audio driver checks for endpoint-less interfaces, but the second one doesn't filter out a garbage warning (without this patch). Likely it'd be better to remove these warnings from the driver, and maybe just place them in usbcore if they'd ever be useful. But this at least gets rid of one class of "is this device broken" questions.
-
Alan Stern authored
This patch makes the shuttle_usbat subdriver use proper DMA I/O buffering. Although I try to be careful with these changes, I can't test them. So I urge you to read through it carefully to verify that nothing seems to be wrong.
-
- 29 Jul, 2003 9 commits
-
-
Daniele Bellucci authored
-
Daniele Bellucci authored
-
Daniele Bellucci authored
-
Daniele Bellucci authored
-
Daniele Bellucci authored
-
Daniele Bellucci authored
-
Greg Kroah-Hartman authored
-
Greg Kroah-Hartman authored
Also set usb_device.dev.release right after initialization to catch any early devices being destroyed. I still think there's a few error paths to correct, but this catches a lot of previous errors.
-
Greg Kroah-Hartman authored
Added a release callback, as is required, otherwise we can easily oops if a user grabs a sysfs file and the device is removed from the system.
-
- 27 Jul, 2003 3 commits
-
-
Linus Torvalds authored
-
Linus Torvalds authored
also detach the threads. Otherwise we'll leave them around as zombies, waiting for them to be picked up by their parent. Which might be the execve() thread itself, causing a deadlock.
-
Jens Axboe authored
Noted by Sean Estabrooks: There is a bug in "ll_rw_blk.c" handling partial bvec submissions. For whatever reason the floppy driver was triggering it more than other users (most likely because most other devices tend to be able to always complete a full request in one go). Fixed by updating the proper bio vector index entry.
-
- 26 Jul, 2003 6 commits
-
-
Bernardo Innocenti authored
Add kconfig options to allow excluding either or both the I/O schedulers. This can be useful for embedded systems (saves about ~13KB). All schedulers are enabled by default for non-embedded.
-
Geert Uytterhoeven authored
This updates the valkyriefb driver to the new API. From Paul Mackerras <paulus@samba.org>: "It compiles OK, but I haven't been able to test it. I have simplified the driver quite a bit using the knowledge that there can only ever be one valkyrie graphics adaptor in a system - it is the built-in graphics adaptor on various ancient mac and powermac machines, and we access it at a hard-coded address, so we can only handle one."
-
Ville Herva authored
Documentation/nmi-watchdoc.txt doesn't actually tell what options need to be enabled in kernel config in order to use NMI watchdog. I for one found it confusing.
-
Geert Uytterhoeven authored
Rename ariadne2 to zorro8390, since this driver supports several NS8390-based Zorro Ethernet cards. Kill all never used occurrencies of CONFIG_NE2K_ZORRO.
-
Geert Uytterhoeven authored
m68k cache updates (from Roman Zippel): - Uninline flush_icache_range() - Add virt_to_phys_slow() which handles vmalloc()ed space
-
Geert Uytterhoeven authored
M68k: Use genrtc on all m68k platforms
-