- 08 Jan, 2003 40 commits
-
-
Greg Kroah-Hartman authored
into kroah.com:/home/linux/linux/BK/gregkh-2.5
-
Linus Torvalds authored
-
Dave Jones authored
-
Dave Jones authored
Since we killed off the broken 486 strings copies, the config item isn't needed any longer.
-
Dave Jones authored
Next in line for the -W cleanups is this patch from Willy which I've been carrying since 2.5.29 or so. Should be no functional differences, just no more warnings when we compile with -W
-
Dave Jones authored
s/boundry/boundary/
-
Dave Jones authored
-
Dave Jones authored
Without this fix, compiling with CONFIG_DEBUG_SPINLOCK dies with an unknown variable error..
-
Dave Jones authored
This looks extremely suspect to me, and seems like it will prefetch past the end of the pmd, which is a no no.
-
Dave Jones authored
-
Dave Jones authored
Can't remember where this came from, but its been around for quite a while. Prints the parent (tracer) pid if its being traced.
-
Dave Jones authored
The first of many... From 2.4
-
Dave Jones authored
Silly typo caused strange corruption. With this fixed, agpgart almost works again on x86-64 (change_page_attr() seems broken there)
-
Dave Jones authored
From 2.4
-
Dave Jones authored
Cset 1.808 in 2.4 never got propagated forward to 2.5 It's pretty much the same fix as below (s/!=/</), but with the following changes - This was a patch to pci_alloc_consistant(), which now wants to be dma_alloc_coherent() - Removal of the u32 cast
-
Dave Jones authored
Missed forward port from 2.4. ACKed by GregKH
-
Dave Jones authored
-
Dave Jones authored
From 2.4
-
Dave Jones authored
-
Dave Jones authored
From 2.4, and munged.
-
Dave Jones authored
From 2.4
-
Dave Jones authored
Fix incorrect CONFIG_ name
-
Dave Jones authored
From 2.4 a few months back. With a few edits by myself to remove the wacky bits of the diff that backed out fixes. (*Sigh*, Intel).
-
Dave Jones authored
Been carrying this for ages.. From Jens Axboe: This is for changers, we may need more than the default 5 second timeout for loading a disc since it may require moving stuff around :)
-
Dave Jones authored
From Jens Axboe: Only fall back to plain READ, if the device says it doesn't support the READ_CD opcode. This is the true error for which we want to do the fall back, not for any generic error.
-
Dave Jones authored
Missing macro header.
-
Linus Torvalds authored
-
Alan Cox authored
IBM memory key Epson 785EPX PCMCIA slot Konica KD-200Z camera
-
Greg Kroah-Hartman authored
into kroah.com:/home/linux/linux/BK/gregkh-2.5
-
Neil Turton authored
I got a PL2303 USB serial converter a few days ago, and got your driver up and running fairly quickly. The problem is that I got an oops when I rmmod-ed the drivers. The pl2303 uses two interfaces but registers only the second (technically wrong, I guess, but should work). When pl2303.o is removed, it attempts to deregister the first interface (which has no effect), so the second interface remains registered with usbserial. The old struct serial still points at the removed pl2303 driver so things go pop when anything touches it. I think the PL2303 hack in usb_serial_probe should not change the "interface" variable, which gets stored in serial->interface, since usbcore will register whatever "ifnum" says. I think that's enough waffle. The patch is below. Keep up the good work!
-
Gerd Knorr authored
This updates the saa7134 driver. It adds support for a few more cards and includes adaptions to the video-buf.c changes sent earlier.
-
Gerd Knorr authored
This has some i2c adaptions and cleanups for the tv card tuner module.
-
Gerd Knorr authored
This updates a bunch of i2c modules in drivers/media/video. Most of it are adaptions to the recent i2c changes in the kernel. While being at it I also did some other cleanups like deleting unused+dead code, using name-based initialization for some not-yet converted structs, ... The also has a few small fixes here and there, but no major functional changes.
-
Gerd Knorr authored
This adds a driver module for the bt832 chip. It is needed by the bttv driver to support the Pixelview Digital Camera. The bt832 is connected using the GPIO pins of the bt878 chip.
-
Gerd Knorr authored
-
Gerd Knorr authored
This updates the bttv driver. Changes: * adaptions to the video-buf changes send in a previous mail. * adaptions to recent i2c changes in the kernel. * first code bits the pixelview digital camera support (not working yet). * lots of small fixes/changes for specific TV cards.
-
Gerd Knorr authored
This adds the v4l1-compat module. This is a module which can translate most (old) v4l1 ioctls into the new v4l2 API. This makes it easier for v4l2 drivers to present both old v4l and new v4l2 APIs to video4linux applications. The saa7134 driver uses this for example.
-
Gerd Knorr authored
This updates the video-buf helper module. It changes the field handling a bit and adds code do deal better with alternating field capture (= capture even and odd fields to separate video buffers).
-
Gerd Knorr authored
This adds the tda9887 i2c module to the linux kernel. This one is needed for some TV cards. It also adds the missing #define to audiochip.h which currently breaks the bttv build.
-
Henning Meier-Geinitz authored
Hi, On Wed, Jan 08, 2003 at 08:29:36AM -0800, Greg KH wrote: > On Tue, Dec 24, 2002 at 05:44:55PM +0100, Henning Meier-Geinitz wrote: > > Hi, > > > > On Tue, Dec 24, 2002 at 12:40:06AM +0100, Oliver Neukum wrote: > > > > > > > Well, the reason I didn't use one was that I didn't found one in > > > > usb.h/usb_ch9.h for 16. It's also not listed on www.usb.org. > > > > > > > > lsusb calls it "Data". However, I'm not sure if this is a hex/dec > > > > error and they really mean "Data" = dec 10, not 0x10 (=dec 16). > > > > > > > > Shall I define a local symbolic name (e.g. > > > > STRANGE_HP_SCANJET_INTERFACE_CLASS)? But I really don't know what this > > > > class is. I only know that it's used by a Hewlett-Packard ScanJet > > > > 3300c and Genius HR6 USB - Vivid III. > > > > > > Better that than a bare number. > > > > Patch attached. > > Applied to my 2.4 tree, sorry for the delay. Here is the same for 2.5.44:
-