- 11 Jun, 2002 5 commits
-
-
Greg Kroah-Hartman authored
-
Oliver Neukum authored
This does a little optimisation, namely kill an unneeded counter and put the members of the device descriptor structure in an order that should be a little more efficient.
-
David S. Miller authored
DEVICE_ID_SIZE clashes with the define in include/linux/device.h
-
David S. Miller authored
Need asm/irq.h too...
-
David S. Miller authored
Need asm/io.h if you want to use ioremap() et al.
-
- 10 Jun, 2002 29 commits
-
-
David Brownell authored
- Delays or eliminates some IRQs It'll mostly affect control or iso transfers, which typically have multiple TDs per URB, by making only the last TD generate an IRQ. - Shortens some of the submit path that needs to run with IRQs disabled ... no need to use the dma_to_td hashtable. (Of course that path is still pretty long...) - Gets rid of case where the ED state was confused ... now there's only one such state, not two.
-
Brad Hards authored
-
Brad Hards authored
-
Nemosoft Unv. authored
Attached you'll find a patch for the Philips Webcam Driver version 8.7. This is a jump from 8.5, since 8.6 never officially made it into the 2.5 series due to rapid changes and incompatabilities. The biggest changes include (from the Changelog) 8.7 * Incorporating changes in ioctl() parameter passing * Also changes to URB mechanism * Updating copyright information 8.6 * Added ID's for Visionite VCS UM100 and UC300 * Removed YUV420-interlaced palette altogether (was confusing) * Removed MIRROR stuff as it didn't work anyway * Fixed a problem with the 'leds' parameter (wouldn't blink) * Added ioctl()s for advanced features: 'extended' whitebalance ioctl()s, CONTOUR, BACKLIGHT, FLICKER, DYNNOISE. * VIDIOCGCAP.name now contains real camera model name instead of 'Philips xxx webcam' * Added PROBE ioctl (see previous point & API doc)
-
David Brownell authored
One could get to like "KBUILD_VERBOSE=0 make" ... :) This gets rid of a compile warning.
-
Brad Hards authored
-
Linus Torvalds authored
hardsects array) Courtesty of Martin Dalecki
-
bk://namesys.com/bk/reiser3-linux-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Oleg Drokin authored
into angband.namesys.com:/home/green/bk_work/reiser3-linux-2.5-test
-
Martin Dalecki authored
and now the final irda offender :-).
-
Martin Dalecki authored
Slowly we get there...
-
Martin Dalecki authored
irttp.c was infected too.
-
Martin Dalecki authored
irlmp_event was abusing __FUCTION__ too. And of course it appears all red in my gvim as well.
-
Martin Dalecki authored
irlmp abused __FUNCTION__ and the space bar as well.
-
Martin Dalecki authored
irlap_frame this time. Let me guess they used emacs?!
-
Martin Dalecki authored
irlap_event was abusing __FUNCTION__ too.
-
Martin Dalecki authored
The irda people use shreddy editors saga continues.
-
Martin Dalecki authored
irias_object missused __FUNCTION__ too.
-
Martin Dalecki authored
This time for iriap_event.
-
Martin Dalecki authored
- Fix improper __FUNCTION__ usage in iriap.c - Trailing white garbage removal as well.
-
Martin Dalecki authored
- Fix improper __FUNCTION__ usage in irda_device. - Whitepsace cleanup there too.
-
Martin Dalecki authored
- Fix improper __FUNCTION__ usage in af_irda.c - Fix redundant white space usage there - I couldn't resist.
-
Martin Dalecki authored
- Fix compilation warnings in cfbimgblt.c. - Fix improper __FUNCTION__ usage in smb_debug.h. It's all about giving the compiler a chance to coalesce equal string constants - a good reason for the C language standard to depricate the old semantics.
-
Martin Dalecki authored
Fix improper __FUNCTION__ usage in st680 driver code, cdc-ether.c. Fix namespace clash in cdc-ether.h
-
Martin Dalecki authored
Fix improper usage of __FUNCTION__ in usb code. Fix unpleasant results from some code formatting editor (propably emacs) in i2c, which broke an error message altogether.
-
Martin Dalecki authored
Kill unused variables in legacy cdrom drivers, after the janitorial patch got in.
-
Martin Dalecki authored
This is fixing warnings about unused variables in pd.c and pcd.c
-
Martin Dalecki authored
This is fixing missing ; after branch label at two places.
-
Dan Aloni authored
This patch is against 2.5.21 vanilla. + replace __inline__ with inline. + use list_t intead of struct list_head (no bytes were harmed, bla.. bla..) + add the new list_move and list_move_tail mutators as inline functions.
-
- 09 Jun, 2002 6 commits
-
-
Linus Torvalds authored
-
http://linux-isdn.bkbits.net/linux-2.5.makeLinus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Kai Germaschewski authored
by Sam Ravnborg
-
Kai Germaschewski authored
into tp1.ruhr-uni-bochum.de:/home/kai/kernel/v2.5/linux-2.5.make
-
Kai Germaschewski authored
Tracking dependencies for .ver files isn't really different from the dependency tracking for the other .[ois] targets we do, so just use the normal $(call if_changed_dep) framework. That makes speeds up re-running "make dep" a lot.
-
Kai Germaschewski authored
Up to now, we generated module versions for all objects which were listed in $(export-objs). This had one advantage: A changed .config will not affect which .ver files are built, thus saving recompiles. However, it is fundamentally broken. To build .ver files, we preprocess the exporting sources - and the result can obviously depend on the current .config. Even worse, some files generate errors when preprocessed with the wrong .config - it doesn't matter a lot that drivers/sbus/* will generate errors on x86, since it won't be used anyway, but e.g. kernel/suspend.c cannot be preprocessed unless CONFIG_SOFTWARE_SUSPEND is set. - Up to now, we just silently ignore these errors. Actually, the whole point behind CONFIG_MODVERSIONS is to make sure we don't insert modules into a kernel which was configured differently, and as such the generation of symbols can only work when .config is known. So we now only generate symbols for objects which will actually be compiled - which means less work, and enforce the kernel to be configured before "make dep".
-