- 20 Aug, 2003 1 commit
-
-
Ronald Bultje authored
This is a patch for the video4linux unified zoran driver that has been in the kernel since 2.4.5 or so. It fixes the compile issues in the current 2.6.0-test3 unified zoran driver (current one doesn't compile at all), and also updates its version to what we have in CVS. This adds support for new cards (e.g. LML33R10 from LinuxMediaLabs and DC30+ from Pinnacle), fixes bugs in cards that were already supported and generally improves capture reliability. Changes per file (in detail) are given below. i2c-id.h: add some new IDs for new i2c drivers pci_ids.h: add PCI IDs for each of the supported cards if it has any saa7111.c, saa7110.c, adv7175.c, bt819.c, saa7185.c, bt856.c: update to whatever we've got in our CVS. For most, these are just "easiness" fixes that either add some better debug output, or that make maintainance for both 2.6.x and 2.4.x simpler for me. There's also some specific changes. E.g., in saa7110.c, we enable the VCR mode bits so we get a better image from VCR input. In all of them, we make debugging an insmod option rather than a compile-time option (this makes debugging for users a *lot* easier). Point is that I just want our latest CVS in here. Maintainance is going to be a personal horror-story if it's not. vpx3220.c, saa7114.c, adv7170.c: new i2c ones (for respectively DC10/DC30, LML33R10 and again LML33R10) zr36067.c: removed, the driver is now spread over multiple source files. zoran*.[ch], zr36057.h spread-out source files. Also fixes lots of bugs, can't even start naming them all, you don't want that, neither do I. Just assume that it works better than it used to - it does. Nice things that aren't in the old driver: much more stable, supports DC30+, supports LML33R10, has proper locking/semaphores, supports multiple opens without races now, adapted to new i2c subsystem, v4l2 support, Xv (hardware-scaled) overlay support, and a lot more. Oh, and this one actually compiles. videocodec.[ch], zr360{16,50,60}.[ch]: new sublayer for the driver to unify how we handle the zr36060 chip (DC10(+)/LML33/LML33R10/Buz) and the zr36050/zr36016 (DC30(+)). MAINTAINERS: add me as maintainer (I am). Kconfig: add new cards, plus improve the descriptions. Makefile: d'oh. Zoran: documentation update. Others: I don't think there are any. Greg has gone over the i2c changes a long time ago, he agreed on all of them. Gerd is supposed to take care of the v4l part, he has never complained about any of them. Stability is good, we've fixed most issues (there's still some out there, but nothing serious), lots better than in the old driver. Also, the cards work much better than with the old driver.
-
- 08 Aug, 2003 22 commits
-
-
Linus Torvalds authored
-
Jeff Garzik authored
Contributed by VIA, via Jean Tourrilhes.
-
Jean Tourrilhes authored
ir260_tekram-sir.diff : ~~~~~~~~~~~~~~~~~~~~~ <Patch from Martin Diehl> o [CORRECT] Update tekram-sir dongle driver to common power-settling
-
Jean Tourrilhes authored
ir260_usb_probe-4.diff : ~~~~~~~~~~~~~~~~~~~~~~ <Patch from Oliver Neukum and Daniele Bellucci> o [CORRECT] minor fix to the probe failure path of irda-usb.
-
Jean Tourrilhes authored
ir260_lap_retry_count.diff : ~~~~~~~~~~~~~~~~~~~~~~~~~~ o [CORRECT] add interoperability workaround for 2.4.X IrDA stacks
-
Jean Tourrilhes authored
ir260_donau_cleanup.diff : ~~~~~~~~~~~~~~~~~~~~~~~~ <Patch from Christian Gennerat> o [CORRECT] Disable chip probing that fail too often o [FEATURE] Cleanup STATIC
-
bk://kernel.bkbits.net/gregkh/linux/linus-2.6Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/gregkh/linux/i2c-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Greg Kroah-Hartman authored
into kroah.com:/home/greg/linux/BK/pci-2.6
-
Ivan Kokshaysky authored
Bug #1 (found by Jay Estabrook). On Alpha, under certain circumstances the firmware may close the IO window of PCI-to-PCI bridge even if there is IO behind. This wouldn't be a problem - linux PCI setup code does set up this window properly, but in addition the firmware clears the IO-enable bit in the PCI_COMMAND register of the bridge. Since we don't call pci_enable_* routines for bridges in non-hotplug path, we end up with disabled IO. Fixed by adding pci_enable_bridges() to pci_assign_unassigned_resources(). Architectures which don't use the latter, but do use other setup-bus code (parisc?) also should call pci_enable_bridges() for each root bus. Bug #2 (closely related to #1). As it turns out, pci_enable_device() doesn't work for bridges at all, only for regular devices (header type 0) due to 0x3f mask passed to pci_enable_device_bars(). The mask should be (1 << PCI_NUM_RESOURCES) - 1. Bug #3 (quite a few archs, including i386). pcibios_enable_device() does only check first 6 resources (regardless of the mask) to decide whether or not to enable IO and MEM. Bridge resources start at 7. #2 and #3 affect hotplug. I wonder, has anybody ever tried *bridged* PCI card behind a hot-plug controller?
-
Greg Kroah-Hartman authored
into kroah.com:/home/greg/linux/BK/gregkh-2.6
-
Sean Estabrooks authored
This patch adds another P4B motherboard subsystem identifier to the recent asus sensor patch for the 2.6 kernel.
-
Ian Abbott authored
This patch adds support for ID TECH's IDT1221U USB to RS-232 adapter (intended for use and/or supplied with some of their magnetic/smart card readers). The VID and PID were provided by Steve Briggs on the ftdi-usb-sio-devel list.
-
Wiktor Wodecki authored
On Wed, Aug 06, 2003 at 04:22:44PM -0700, Greg KH wrote: > On Wed, Aug 06, 2003 at 09:11:45PM +0200, Wiktor Wodecki wrote: > > Hello folks, > > > > I just saw that I2C provides "/sys/bus/i2c/drivers/dev\ driver" in > > 2.6.0-test2. It would be nice if you'd consider renaming this to > > dev_driver, to avoid un-neccessary quoting in scripts. > > > > Thank You :-) > > Patches are always gladly accepted :) here you go
-
Greg Kroah-Hartman authored
There was no release function for the objects. bad greg, no biscuit...
-
Greg Kroah-Hartman authored
This is because the name field of struct device is going away, and the name fields on these i2c structures are useful for people.
-
http://ncpfs.bkbits.net/matroxfbLinus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Jens Axboe authored
This is a port of some smp fixes I did for 2.4 floppy.c Andrew did the re-diffing.
-
Rob Radez authored
This removes some function stubs from 6 watchdog drivers. The VFS already returns -EINVAL in cases where fop->read == NULL, so there's no need to duplicate the code 6 times. This patch removes the stubs and is compile tested.
-
David Mosberger authored
From Matt Tolentino: Here's a small patch to change several data types from u64 to unsigned long in efi.h. These changes enable the use of the same data structures and function prototypes for ia32 EFI kernels.
-
Linus Torvalds authored
-
Linus Torvalds authored
-
- 07 Aug, 2003 17 commits
-
-
Bjorn Helgaas authored
This applies on top of Takayoshi's interrupt polarity fix and just makes things a tiny bit more consistent. Is acpi_irq_to_vector() even needed anymore? I don't see any references to it.
-
Bjorn Helgaas authored
The patch below removes the .weak symbol stuff from iosapic.c. As far as I can tell, iosapic.c is compiled for every flavor except the simulator. I tried to boot the HP_SIM kernel on ski, but it seems to loop in find_save_locs(). This happens both with and without this patch, so maybe I have a local problem. (I started with a clean tree, did make
-
Ian Wienand authored
As in_atomic() uses kernel_locked() which is in smp_lock.h.
-
Jesse Barnes authored
sn2 still doesn't use ACPI to describe PCI busses on the system (I'm working on it), so we have to do it the old fashioned way. This patch also includes a few other fixes.
-
Arun Sharma authored
The attached patch (against 2.6) helps IA-32 applications take advantage of the generic 32 bit (fs/compat_ioctl.c) ioctl handlers.
-
Arun Sharma authored
The patch was created by Matt Helsley <matthltc at us.ibm.com> for 2.4 and has been changed slightly to match 2.6. The implementation compromises performance for correctness.
-
Andi Kleen authored
Add include to fix compilation on x86-64
-
bk://kernel.bkbits.net/jgarzik/net-drivers-2.6Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Jeff Garzik authored
-
Javier Achirica authored
-
Javier Achirica authored
-
Javier Achirica authored
-
Javier Achirica authored
-
Javier Achirica authored
-
Javier Achirica authored
-
David Mosberger authored
-
Linus Torvalds authored
-