Re: [PATCH] hamradio: baycom: use new parport device model

2017-09-17 Thread Thomas Sailer
Acked-By: Thomas Sailer Am 17.09.2017 um 13:46 schrieb Sudip Mukherjee: Modify baycom driver to use the new parallel port device model. Signed-off-by: Sudip Mukherjee --- Not tested on real hardware, only tested on qemu and verified that the device is binding to the driver properly in

Re: [PATCH] net: hamradio: baycom_ser_fdx: Replace timeval with timespec64

2016-02-10 Thread Thomas Sailer
Reviewed-by: Thomas Sailer Thanks!

Re: [PATCH v3 08/18] baycom_epp: Replace rdtscl() with native_read_tsc()

2015-06-16 Thread Thomas Sailer
Acked-by: Thomas Sailer On 06/17/2015 02:35 AM, Andy Lutomirski wrote: This is only used if BAYCOM_DEBUG is defined. Cc: walter harms Cc: Ralf Baechle Cc: Thomas Sailer Cc: linux-h...@vger.kernel.org Signed-off-by: Andy Lutomirski --- I'm hoping for an ack for this to go through

Re: Patch for WindowsMobile5 on Linux Kernel

2007-10-09 Thread Thomas Sailer
criptors? There must be some justification why these values need to be hardcoded, and if so, this must be dependent on the rndis device really being a WM5 device. Nacked-By: Thomas Sailer <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-kernel"

Re: [PATCH] [369/2many] MAINTAINERS - PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)

2007-08-13 Thread Thomas Sailer
On Sun, 2007-08-12 at 23:33 -0700, [EMAIL PROTECTED] wrote: > Add file pattern to MAINTAINER entry > > Signed-off-by: Joe Perches <[EMAIL PROTECTED]> Acked-By: Thomas Sailer <[EMAIL PROTECTED]> NB: I thought these old non-alsa drivers were going to be removed "soon&q

Re: [PATCH] [90/2many] MAINTAINERS - BAYCOM/HDLCDRV DRIVERS FOR AX.25

2007-08-13 Thread Thomas Sailer
On Sun, 2007-08-12 at 23:24 -0700, [EMAIL PROTECTED] wrote: > Add file pattern to MAINTAINER entry > > Signed-off-by: Joe Perches <[EMAIL PROTECTED]> Acked-By: Thomas Sailer <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-kernel

Re: kernel + gcc 4.1 = several problems

2007-01-03 Thread Thomas Sailer
On Wed, 2007-01-03 at 08:03 -0800, Linus Torvalds wrote: > and assuming the branch is AT ALL predictable (and 95+% of all branches > are), the branch-over will actually be a LOT better for a CPU. IF... Counterexample: Add-Compare-Select in a Viterbi Decoder. If the compare can be predicted, you

Re: OSS driver removal, 3nd round

2006-12-19 Thread Thomas Sailer
On Tue, 2006-12-19 at 05:11 +0100, Adrian Bunk wrote: > 1. ALSA drivers for the same hardware > > SOUND_ES1371 Acked-By: Thomas Sailer <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL

Re: Nokia E61 and the kernel BUG at mm/slab.c:594

2006-12-12 Thread Thomas Sailer
On Tue, 2006-12-12 at 12:16 +0100, Oliver Neukum wrote: > What functions does this mode involve? Here are the descriptors: PC-Suite Mode: Bus 001 Device 005: ID 0421:0418 Nokia Mobile Phones Device Descriptor: bLength18 bDescriptorType 1 bcdUSB 2.00

Re: Nokia E61 and the kernel BUG at mm/slab.c:594

2006-12-12 Thread Thomas Sailer
On Tue, 2006-12-12 at 11:44 +0200, Muli Ben-Yehuda wrote: > I assume the previous crash was 2.6.19 with SMP? did it work with > earlier kernels? It happens to me as well, current Fedora 6 update kernel-2.6.18-1.2849.fc6.i686 UP, with a Nokia E70 in "PC Suite" mode. It works ok in mass storage mod

Re: [2.6 patch] schedule obsolete OSS drivers for removal

2005-07-26 Thread Thomas Sailer
On Tue, 2005-07-26 at 17:08 +0200, Adrian Bunk wrote: > This patch schedules obsolete OSS drivers (with ALSA drivers that > support the same hardware) for removal. > > > Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Acked-by: Thomas Sailer <[EMAIL PROTECTED]> - To

Re: Synaptics probe problem on Acer Travelmate 3004WTMi

2005-07-17 Thread Thomas Sailer
On Wed, 2005-07-13 at 20:38 +0200, Vojtech Pavlik wrote: > Also try the usual options ("i8042.nomux=1" and "usb-handoff"). One or > both may make the problem disappear. usb-handoff did it, thanks a lot! Tom - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body o

Synaptics probe problem on Acer Travelmate 3004WTMi

2005-07-13 Thread Thomas Sailer
Hi Vojtech, I've got a problem with my Acer Travelmate 3004WTMi Laptop: vanilla 2.6 does not detect the synaptics touchpad. The problem lies within psmouse_probe: after the PSMOUSE_CMD_GETID command, param[0] contains 0xfa, and not one of the expected values. If I just ignore this and continue, t

Re: [RESUBMIT] [PATCH] [BUGFIX] sound/oss/es1371.c: Don't print joystick address before it's set.

2005-03-03 Thread Thomas Sailer
On Thu, 2005-03-03 at 16:48 +0100, Bodo Eggert wrote: > Signed-off-by: Bodo Eggert <[EMAIL PROTECTED]> Acked-By: Thomas Sailer <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Mor

Re: Linux 2.4.5-ac9

2001-06-06 Thread Thomas Sailer
Christoph Hellwig schrieb: > > In article <[EMAIL PROTECTED]> you wrote: > > 2.4.5-ac9 > > > o Add es1371 sound driver locking (Frank Davis) > > It's buggy. The locking in ->read and ->write will give > double ups when a signal is pending and remove a not added waitq > when

Re: Linux 2.4.5-ac9

2001-06-06 Thread Thomas Sailer
Alan Cox schrieb: > 2.4.5-ac9 > o Add es1371 sound driver locking (Frank Davis) Looks bogus. Independent processes can open the same device once for reading and once for writing, now you are serializing needlessly these processes. Please revert. Tom - To unsubscribe from t

Re: USBDEVFS_URB_TYPE_INTERRUPT

2001-06-06 Thread Thomas Sailer
John Chris Wren schrieb: > I don't really want to write a full-up kernel mode driver for this device, > but interrupt type messages are the preferred method for communicating, > since once a message needs to be sent, it should be timely (whereas control > messages could be delayed a signi

Re: LANANA: To Pending Device Number Registrants

2001-05-16 Thread Thomas Sailer
"H. Peter Anvin" schrieb: > How about for other device classes? Cheap USB devices (and sometimes even expensive ones) do not have serial numbers or other unique identifiers. Therefore some sort of topology based addressing scheme has to be used in that case. Tom - To unsubscribe from this list:

Re: init_rwsem redefinition warning in usbdevice_fs.h

2001-04-24 Thread Thomas Sailer
Alex Riesen wrote: > Should it be fixed? And, maybe the other define's around > should be fixed too? The comment line above actually says it all. The defines have been added because at the time of writing this file rw semaphores did not work in a module, so they were replaced with mutexes using

Re: usb audio

2001-02-19 Thread Thomas Sailer
Landsberger Brian J wrote: > > Has anyone been able to get the Apple Pro (the round clear) speakers to > work in Linux? I've read the howto's and followed the various steps to > no avail. The various usb modules print the following to syslog: This looks ok. So what is wrong? Tom - To un

Re: 2.2.19/2.4.0-test and usbdevfs

2000-12-20 Thread Thomas Sailer
> modprobe: modprobe: Can't locate module usbdevfs > mount: fs type usbdevfs not supported by kernel Add: alias usbdevfs usbcore to /etc/modules.conf Tom - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ

Re: [PATCH] i810_audio 2.4.0-test11

2000-12-04 Thread Thomas Sailer
Alan Cox wrote: > What format is it that causes the problems, the only badly supported key format > right know I know of is 16bit bigendian. That needs some small esd patches. S8 is a not very well supported format. And btw there are many applications that cannot live with esd for latency reaso

Re: [PATCH] i810_audio 2.4.0-test11

2000-12-04 Thread Thomas Sailer
Alan Cox wrote: > Definitely we should If you start killing format conversion then >99% of the existing applications won't work anymore with usbaudio. At that point you can dump the OSS interface just as well. And before killing format conversion you should kill the mmap stunt, because the form

[PATCH]: 2.4.0-testx: ac97_codec

2000-11-27 Thread Thomas Sailer
In the current ac97_codec, computation of attenuation values may overflow the register width, thus resulting in maximum volume when minimum was requested. This patch adds overflow checks and limitations. Tom --- ac97_codec.c.orig Thu Nov 23 13:13:13 2000 +++ ac97_codec.cThu Nov 23 13:2

[PATCH]: 2.4.0-testx: USB Audio

2000-11-27 Thread Thomas Sailer
ov 27 18:32:32 2000 @@ -89,6 +89,9 @@ * Somewhat peculiar due to OSS interface limitations. Only works * for channels where a "slider" is already in front of it (i.e. * a MIXER unit or a FEATURE unit with volume capability). + * 2000-11-26:

[PATCH]: USB Audio 2.2.18pre

2000-11-27 Thread Thomas Sailer
limitations. Only works * for channels where a "slider" is already in front of it (i.e. * a MIXER unit or a FEATURE unit with volume capability). + * 2000-11-26: Thomas Sailer + * Workaround for Dallas DS4201. The DS4201 uses PCM8 as form

Re: test11-pre6 still very broken

2000-11-21 Thread Thomas Sailer
Vojtech Pavlik wrote: > Oops? I thought the paired controller there is for OSes not being able > to handle EHCI yet? So that USB works even for those ... I think EHCI > should handle even 1.x devices ... I may be wrong, though. Check the Intel EHCI spec. Esp. the chapter about port handover...

[PATCH]: 2.4.0-testx: sound drivers

2000-11-20 Thread Thomas Sailer
In poll, the DMA buffers need to be allocated if not already, otherwise fragsize, dmasize, count etc. contain bogus values, which lead to bogus poll mask return. (The alternative would have been to special case !dmabuf_*.ready and defer DMA buffer allocation, but when the user does poll, it likely

[PATCH]: 2.2.18pre: sound drivers

2000-11-20 Thread Thomas Sailer
In poll, the DMA buffers need to be allocated if not already, otherwise fragsize, dmasize, count etc. contain bogus values, which lead to bogus poll mask return. (The alternative would have been to special case !dmabuf_*.ready and defer DMA buffer allocation, but when the user does poll, it likely

Re: test11-pre6 still very broken

2000-11-20 Thread Thomas Sailer
Linus Torvalds wrote: > I'd disagree. UHCI has tons of advantages, not the least of which is > [Cthat it was there first and is widely available. If OHCI hadn't been > done we'd have _one_ nice good USB controller implementation instead of UHCI has a couple of disadvantages, though (and some o

Re: Poll and OSS API

2000-11-02 Thread Thomas Sailer
"Richard B. Johnson" wrote: > The specification is bogus and should be fixed. select() is not Don't tell me, I didn't write that spec. > side-affects is patently wrong. ioctl() was designed to control > things. It already exists, ioctl(fd, SNDCTL_DSP_SETTRIGGER, PCM_ENABLE_INPUT). If we offici

Poll and OSS API

2000-11-02 Thread Thomas Sailer
The OSS API (http://www.opensound.com/pguide/oss.pdf, page 102ff) specifies that a select _with the sounddriver's filedescriptor set in the read mask_ should start the recording. Implementing this is currently not possible, as the driver does not get to know whether the application had the filede

Re: Updated 2.4 TODO List

2000-10-09 Thread Thomas Sailer
Alan Cox wrote: > > > 4. Boot Time Failures > > > > * IBM Thinkpad 390 won't boot since 2.3.11 (See Decklin Foster for > >more info) > > Add Palmax PD1100 hangs during boot since 2.4.0-test9 My Asus P55TP4 (i430FX)/AMD K5 PC also crashes after "Booting the kernel..." and before pri