Re: [PATCH] ALSA: virtio: remove duplicate check if queue is broken

2024-01-24 Thread Takashi Iwai
On Wed, 24 Jan 2024 13:08:34 +0100, Li RongQing wrote: > > virtqueue_enable_cb() will call virtqueue_poll() which will check if > queue is broken at beginning, so remove the virtqueue_is_broken() call > > Signed-off-by: Li RongQing Applied now. Thanks. Takashi

Re: [PATCH] ALSA: virtio: remove duplicate check if queue is broken

2024-01-24 Thread Stefan Hajnoczi
On Wed, 24 Jan 2024 at 07:17, Li RongQing wrote: > > virtqueue_enable_cb() will call virtqueue_poll() which will check if > queue is broken at beginning, so remove the virtqueue_is_broken() call > > Signed-off-by: Li RongQing > --- > sound/virtio/virtio_card.c| 2 -- >

[PATCH] ALSA: virtio: remove duplicate check if queue is broken

2024-01-24 Thread Li RongQing
virtqueue_enable_cb() will call virtqueue_poll() which will check if queue is broken at beginning, so remove the virtqueue_is_broken() call Signed-off-by: Li RongQing --- sound/virtio/virtio_card.c| 2 -- sound/virtio/virtio_ctl_msg.c | 2 -- sound/virtio/virtio_pcm_msg.c | 2 -- 3 files

[PATCH] ALSA: hda - Add laptop imic fixup for ASUS M9V laptop

2019-09-20 Thread Shih-Yuan Lee (FourDollars)
The same fixup to enable laptop imic is needed for ASUS M9V with AD1986A codec like another HP machine. Signed-off-by: Shih-Yuan Lee (FourDollars) --- sound/pci/hda/patch_analog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c

Hello Dear.

2019-06-18 Thread Noora Abdul
-- Hello Dear, Greetings and how is your day going? I am Miss Noora Abdul from South Sudan and I am also an orphan and I will like to discuss something very urgent with you when I hear from you. Regards Noora Abdul --

Re: Microphone volume low on linux driver

2019-04-19 Thread Eric Curtin
*the Windows driver On Fri, 19 Apr 2019 at 14:17, Eric Curtin wrote: > > Hi Guys, > > I have a headset, Linux recognizes it as "HyperX Virtual Surround Sound > Digital Stereo", I have it set to 150% recording volume. It's a "HyperX > Cloud II" headset, the Windows seems to work fine. I also

Microphone volume low on linux driver

2019-04-19 Thread Eric Curtin
Hi Guys, I have a headset, Linux recognizes it as "HyperX Virtual Surround Sound Digital Stereo", I have it set to 150% recording volume. It's a "HyperX Cloud II" headset, the Windows seems to work fine. I also tried "Digital Stereo (IEC958) Input" mode. Is there a quirk or similar in the kernel

In need of your swift response, Kindly Email today.

2019-04-06 Thread Mr Bretton Calunoth
With All Due Respects , I am Mr Bretton Calunoth,I have a High Profile Client Who confided in me about US$60,000,000.00 and she wishes to invest, She needs a foreigner who will be her Investment/Asset manager to help her invest into any of investment sectors reachable to the manager. Please let

Re: [PATCH 0/4] Introduce the aural error reporting framework

2019-04-02 Thread Thomas Gleixner
Matteo, On Tue, 2 Apr 2019, Matteo Croce wrote: > On Tue, Apr 2, 2019 at 11:33 AM Thomas Gleixner wrote: > > Aside of that, where is the android-app to customize and decode the > > melodies? > > > > I surely want to have the music theme of 'Once Upon a Time in the West' on > > kernel crashes. >

Re: [PATCH 0/4] Introduce the aural error reporting framework

2019-04-02 Thread Matteo Croce
On Tue, Apr 2, 2019 at 11:33 AM Thomas Gleixner wrote: > > On Mon, 1 Apr 2019, Peter Zijlstra wrote: > > On Mon, Apr 01, 2019 at 12:24:51PM +0200, Matteo Croce wrote: > > > The buzzer driver is simple, requires just a few register writes to work, > > > the hardware is extremely cheap and is

Re: [PATCH 0/4] Introduce the aural error reporting framework

2019-04-02 Thread Thomas Gleixner
On Mon, 1 Apr 2019, Peter Zijlstra wrote: > On Mon, Apr 01, 2019 at 12:24:51PM +0200, Matteo Croce wrote: > > The buzzer driver is simple, requires just a few register writes to work, > > the hardware is extremely cheap and is already present on most machines. > > What, no morse-code register

Re: [PATCH 0/4] Introduce the aural error reporting framework

2019-04-01 Thread Peter Zijlstra
On Mon, Apr 01, 2019 at 12:24:51PM +0200, Matteo Croce wrote: > The buzzer driver is simple, requires just a few register writes to work, > the hardware is extremely cheap and is already present on most machines. What, no morse-code register dumps?

[PATCH 5/4] procfs: utility handler to trigger different errors

2019-04-01 Thread Matteo Croce
Add a /proc/crashtest handler which triggers different kernel errors. Just write a single character (if many are written, only the first one is read), to trigger different errors: - p: raise a kernel panic - w: generate a warning - o: raise an oops The handler permissions are set to 0220 to avoid

[PATCH 3/4] bug: use the aural error reporting framework to report warnings

2019-04-01 Thread Matteo Croce
Use the new aural error reporting framework to signal kernel bugs. Emit the sound at the end of the __warn(), so the WARN_* are all covered. If panic_on_warn is set, panic() will play its sound and never return, so there is no risk to emit two sounds or the wrong one. Signed-off-by: Matteo Croce

[PATCH 1/4] aural error reporting framework

2019-04-01 Thread Matteo Croce
The Linux kernel has had verbal error reporting since the beginning. Different error conditions trigger different error messages, with different severity: from a simple warning to the most feared kernel panic. While this detailed error reporting is much helpful to developers or end users, there

[PATCH 4/4] oops: use the aural error reporting framework to report oopses

2019-04-01 Thread Matteo Croce
Use the new aural error reporting framework when reporting an oops. The sound is emitted at the end of oops_exit(), to avoid interfering with other oops actions, like stack dump. Signed-off-by: Matteo Croce --- kernel/panic.c| 18 ++ lib/Kconfig.debug | 10 ++ 2

[PATCH 0/4] Introduce the aural error reporting framework

2019-04-01 Thread Matteo Croce
The Linux kernel has had verbal error reporting since the beginning. Different error conditions trigger different error messages, with different severity: from a simple warning to the most feared kernel panic. While this detailed error reporting is much helpful to developers or end users, there

[PATCH 2/4] panic: use the aural error reporting framework to report panics

2019-04-01 Thread Matteo Croce
Use the new aural error reporting framework to signal kernel panic. The error sound is emitted between the stack dump and the kexec jump. Signed-off-by: Matteo Croce --- kernel/panic.c| 25 + lib/Kconfig.debug | 10 ++ 2 files changed, 35 insertions(+) diff

kernel panic

2019-04-01 Thread Victor L
Hi , I have Linux panic when started play music with one of my USB audio device. first please see this logs: [ 71.684730] usbcore: registered new interface driver snd-usb-audio [ 73.835355] BUG: unable to handle kernel NULL pointer dereference at 0008 [ 73.835412] IP: []

Ree...

2019-01-14 Thread KHIM LEANG
Greetings! I sent this letter to you 2days ago,but I'm not sure if you get it,and this is the reason i repeat it again.Please get back to me for more details. Regards, Khim Leang

Update

2018-11-02 Thread Bruce Blake
Hello Dear how are you doing today? my name is Bruce Blake, the manager foreign affairs in City Finance Bank, we have a customer here in bank that has not accessed his account for the past 18 years, after some research made about him we found out he was a victim of the crashed mining company

Having trouble turning on sound soc device driver

2018-10-23 Thread Greg Wilson-Lindberg
I'm trying to add a driver to a Raspberry Pi3 kernel that I'm compiling in the Yocto system. The driver is for an SOC codec. I've read up on all of the Kconfig information that I can find and I'm still baffled with this problem. I've been able to add configuration for other driver modules and

i2s\pcm\spdif\slimbus

2018-09-29 Thread Muni Sekhar
Hi All, Can someone share the links to i2s\pcm\spdif\slimbus bus specifications. -- Thanks, Sekhar

Re: Grant

2018-09-21 Thread M. M. Fridman
-- I, Mikhail Fridman have selected you specifically as one of my beneficiaries for my Charitable Donation of $5 Million Dollars, Check the link below for confirmation: https://www.rt.com/business/343781-mikhail-fridman-will-charity/ I await your earliest response for further directives.

Re: ~100 seconds(!) load time of snd-usb-audio

2018-08-21 Thread Ran Shalit
On Mon, Aug 20, 2018 at 8:59 AM Ran Shalit wrote: > > Hello, > > We encounter the following strange behavior, and struggle with it for > couple of days now. I hope someone can suggest how to handle it. > > 1. We have a sound card, which takes ~100seconds(!) till it finishes > loading of

~100 seconds(!) load time of snd-usb-audio

2018-08-20 Thread Ran Shalit
Hello, We encounter the following strange behavior, and struggle with it for couple of days now. I hope someone can suggest how to handle it. 1. We have a sound card, which takes ~100seconds(!) till it finishes loading of snd-usb-audio module. please see log here:

UBSAN warning from ac97_codec.c - shift exponent 68 is too large for 32-bit type 'int'

2018-08-12 Thread Meelis Roos
After the NULL UBSAN warning with gcc-8 are gone, there are still 2 new UBSAN warnings left with gcc-8.2: [ 16.174194] UBSAN: Undefined behaviour in sound/pci/ac97/ac97_codec.c:836:7 [ 16.174282] shift exponent 68 is too large for 32-bit type 'int' Full dnesg: [0.00] Linux version

Re: [alsa-devel] first and last audio sample timestamp

2018-06-25 Thread Takashi Iwai
On Mon, 25 Jun 2018 16:58:26 +0200, Subhashini Rao Beerisetty wrote: > > On Mon, Jun 25, 2018 at 8:23 PM, Takashi Iwai wrote: > > > On Mon, 25 Jun 2018 16:50:20 +0200, > > Subhashini Rao Beerisetty wrote: > > > > > > On Mon, Jun 25, 2018 at 8:04 PM, Takashi Iwai wrote: > > > > > > > On Fri, 22

Re: [alsa-devel] first and last audio sample timestamp

2018-06-25 Thread Takashi Iwai
On Fri, 22 Jun 2018 16:00:10 +0200, Subhashini Rao Beerisetty wrote: > > [ Please keep me in CC as I'm not subscribed to the list] > > Hi All, > > > > Hello all, > > > I’m using aplay and arecord utilities for playback and capture. I need to > capture the timestamps for the first and last

Re: audio samples data flow from user mode to kernel mode

2018-06-25 Thread priyaranjan
Hi Subhashini, On Sat, Jun 23, 2018 at 4:22 PM, Subhashini Rao Beerisetty wrote: > Hello All, > > > > I’m trying to understand how audio samples transferred between user mode to > kernel mode during playback and capture. I’m using aplay & arecord alsa > utilities for playback and capture. > > >

Re: audio samples data flow from user mode to kernel mode

2018-06-23 Thread o
23.06.2018, 14:52, "Subhashini Rao Beerisetty" : > Hello All, Hello, > I’m trying to understand how audio samples transferred between user mode to > kernel mode during playback and capture. I’m using aplay & arecord alsa > utilities for playback and capture. > > Let us take a PCM wav file

Re: Grant

2018-06-20 Thread Maratovich M. Fridman
-- I Mikhail Fridman. has selected you specially as one of my beneficiaries for my Charitable Donation, Just as I have declared on May 23, 2016 to give my fortune as charity. Check the link below for confirmation:

Re: Grant

2018-06-20 Thread Maratovich M. Fridman
-- I Mikhail Fridman. has selected you specially as one of my beneficiaries for my Charitable Donation, Just as I have declared on May 23, 2016 to give my fortune as charity. Check the link below for confirmation:

Re: [alsa-devel] sound: ALSA PCM Timestamps

2018-05-23 Thread Pierre-Louis Bossart
On 5/23/18 8:00 AM, Muni Sekhar wrote: [ Please keep me in CC as I'm not subscribed to the list] Hi All, There are several time stamping functions in ALSA: snd_pcm_status_get_trigger_tstamp snd_pcm_status_get_trigger_htstamp snd_pcm_status_get_tstamp snd_pcm_status_get_htstamp

Re: sound: latency and synchronization measurements

2018-05-18 Thread Muni Sekhar
On Fri, May 18, 2018 at 6:42 PM, Greg KH wrote: > On Fri, May 18, 2018 at 06:07:29PM +0530, Muni Sekhar wrote: >> [ Please keep me in CC as I'm not subscribed to the list] >> >> Hi All, >> >> I am trying to characterize the audio synchronization between two >> systems. There is a

Re: sound: latency and synchronization measurements

2018-05-18 Thread Muni Sekhar
On Fri, May 18, 2018 at 6:53 PM, Aris Aris wrote: > Hi, > > You could try bitbanging any availiable peripheral(i.e gpio) from each > system at the callbacks and have a logic analyzer measuring and reporting > time delay. Thank you very much Aris for this information. I am

sound: latency and synchronization measurements

2018-05-18 Thread Muni Sekhar
[ Please keep me in CC as I'm not subscribed to the list] Hi All, I am trying to characterize the audio synchronization between two systems. There is a mechanism to route audio between two systems, we run ‘aplay’ at one system and ‘arecord’ in other system. We need to measure the time

sound: aplay\arecord audio frame flow

2018-05-14 Thread Muni Sekhar
[ Please keep me in CC as I'm not subscribed to the list] Hi All, Is there anyway in the kernel sound subsystem to know when the application calls ‘aplay’ and anything starts playing? Also for arecord\aplay, Is there any way from kernel's point of view to know when it receives for example the

linux-sound: timestamps for audio frames

2018-05-02 Thread Muni Sekhar
[ Please keep me in CC as I'm not subscribed to the list] Hi All, >From sound driver, I am wondering if we could get the timestamps when It receives for example the first and last audio frames. Is there any way we can extract or expose that information to user mode? -- Thanks, Sekhar -- To

RE:Charity Support

2018-04-14 Thread M.Fridman
-- I Mikhail Fridman. has selected you specially as one of my beneficiaries for my Charitable Donation, Just as I have declared on May 23, 2016 to give my fortune as charity. Check the link below for confirmation:

Re: Donation

2018-03-30 Thread M. M. Fridman
I Mikhail Fridman. has selected you specially as one of my beneficiaries for my Charitable Donation, Just as I have declared on May 23, 2016 to give my fortune as charity. Check the link below for confirmation:

Re: [alsa-devel] pulseaudio\aplay\arecord

2018-03-22 Thread Sriram Periyasamy
On Tue, Mar 20, 2018 at 06:42:04PM +0530, Muni Sekhar wrote: > [ Please keep me in CC as I'm not subscribed to the list] > > Hi All, > > > > We are using the Ubuntu 16.04.3 LTS (4.4.0-28-generic) kernel. I’ve a > sound card hardware which supports analog loopback. During analog > loopback

Gruß

2018-03-21 Thread Vladimir Volf
Gruß In einer kurzen Einleitung bin ich der Anwalt Vladimir Volf aus zamberk Tschechische Republik, aber jetzt lebe ich in London, ich habe dir eine E-Mail über meinen verstorbenen Klienten geschickt, aber ich habe keine Antwort von dir erhalten, der Verstorbene ist ein Bürger Von deinem Land mit

Re: [alsa-devel] aplay\arecord compare utility

2018-02-25 Thread Ricard Wanderlof
On Fri, 23 Feb 2018, Muni Sekhar wrote: > [ Please keep me in CC as I'm not subscribed to the list] > > I?m using an alsa utilities(aplay & arecord) for sound loopback > testing. From Linux host , sending & receiving the wav file. > > At end I want to compare the sent & received wav file.

aplay\arecord compare utility

2018-02-23 Thread Muni Sekhar
[ Please keep me in CC as I'm not subscribed to the list] Hi All, I’m using an alsa utilities(aplay & arecord) for sound loopback testing. From Linux host , sending & receiving the wav file. At end I want to compare the sent & received wav file. Does Linux has any utility to support this

information required

2018-02-21 Thread info
Thanks for your last email response to me. The information required should include the following-: Your full names Your address Telephone number Your private email Occupation Age This is to enable my further discussion with you in confidence. Best regards and wishes to you. Mohammad Amir Khadov

audio CODEC(CS42888) test

2018-02-21 Thread Muni Sekhar
Hi All, I’m having a sound hardware which contains an analogue audio CODEC(CS42888) and configuring the CODEC is performed over SPI bus. I noticed that linux kernel already had a driver(snd-soc-cs42xx8.ko) for this, I planned to use this driver. Basically I’d like to perform loopback test

GREETINGS FROM MR.MUSTAPHA ALI.

2018-01-27 Thread mustapha ali
My Dear Friend. I am Mr. Mustapha Ali a banker in Bank of Africa Burkina Faso West Africa, Please i want to transfer an abandoned sum of 13.5 millions USD to your account.50% will be for you and 50% for me. No risk involved. Respond back to me if you are interested along with your personal

Reply

2018-01-23 Thread Andrew
Dear Sir, I am Andrew Wetkas.Personal Assistant to a former Governor in Nigeria. We need your assistance to invest a huge sum in your country. I will give you further details once I hear from you. Regards Andrew -- To unsubscribe from this list: send the line "unsubscribe linux-sound" in the

GOOD DAY FROM MOHAMMED AHMED .

2017-12-19 Thread Mr Mohamad Ahmed
My Dear Friend. I am Mr. Mohammed Ahmed, I work with Bank Of Africa Burkina Faso West Africa as their Auditing Manager. My Dear I am sending you this business proposal in regards to release and transfer of $13.5 M USD into a foreign account. Everything about the transaction shall be done legal

Re: Distress Call Please don't ignore

2017-12-18 Thread Sandra Younes
Good Day, Forgive my indignation if this message comes to you as a surprise and may offend your personality for contacting you without your prior consent and writing through this channel. I came across your name and contact on the course of my personal searching when i was searching for a

Re: Grant -> Reply To fmayrhoferfam...@gmail.com

2017-11-08 Thread The Mayrhofer's
-- Good Day, My wife and I have awarded you with a donation of $ 1,000,000.00 Dollars from part of our Jackpot Lottery of 50 Million Dollars, respond with your details for claims to our private email on: fmayrhoferfam...@gmail.com . We await your earliest response and God Bless you.

Quick Loans

2017-07-25 Thread Sec Capital Loans
Loan Offer at 3%, Feel Free to REPLY back to us for more info. -- To unsubscribe from this list: send the line "unsubscribe linux-sound" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

HOPE TO HEAR FROM YOU

2017-07-12 Thread Miss Fatima
Hello Dear, I'm Miss.Fatima 24yrs old female, from Benghazi – Libya seeking for your assistance regards to my situation since the death of my parents.My father of blessed memory by name late General Abdel Fattah Younes who was shot death by Islamist-linked militia within the anti-Gaddafi forces

Headphone not working on ALC299

2017-05-15 Thread Arek Burdach
Hi, I have a problem with ALC299 sound card on Lenovo Yoga 910 (Kaby Lake). Looks like there is some regression bug with Beep Playback codec with causes: $ amixer controls (...) numid=18,iface=MIXER,name='Beep Playback Switch' amixer: Control default snd_hctl_elem_info error: Invalid argument

Re:

2017-05-03 Thread H.A
With profound love in my heart, I Kindly Oblige your interest to very important proposal.. It is Truly Divine and require your utmost attention.. S hlubokou láskou v mém srdci, Laskave jsem prinutit svuj zájem k návrhu .. Je velmi duležité, skutecne Divine a vyžadují vaši nejvyšší

[no subject]

2017-01-09 Thread anthonia
Bitte tut mir leid, dass ich Sie stören kann, können Sie mich auf E-Mail-Adresse, so dass ich in der Lage, Ihnen meine Bilder -- To unsubscribe from this list: send the line "unsubscribe linux-sound" in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH 2/4] hid-lenovo: Add support for X1 Tablet cover LED control

2016-12-19 Thread Dennis Wassenberg
Hi Jiri, Thanks for your comments. I added comments in-lined. Best regards, Dennis On 19.12.2016 10:54, Jiri Kosina wrote: > Hi Dennis, > > thanks a lot for the patch. > > On Fri, 9 Dec 2016, Dennis Wassenberg wrote: > >> +int hid_lenovo_led_set(enum hid_lenovo_led_type led, bool on) >> +{

Re: [PATCH 4/4] hda: thinkpad_helper: Add support for hid-lenovo LED control

2016-12-19 Thread Dennis Wassenberg
Hi Jiri, "led_set_func_hid_lenovo" is set to "hid_lenovo_led_set" +#if IS_ENABLED(CONFIG_HID_LENOVO) +static int hda_fixup_thinkpad_hid_prepare(struct hda_codec *codec) +{ + struct hda_gen_spec *spec = codec->spec; + int ret = 0; + + if (!is_thinkpad(codec)) +

Re: [PATCH 4/4] hda: thinkpad_helper: Add support for hid-lenovo LED control

2016-12-19 Thread Jiri Kosina
On Fri, 9 Dec 2016, Dennis Wassenberg wrote: > +#if IS_ENABLED(CONFIG_THINKPAD_ACPI) > + if (led_set_func_tpacpi) > + led_set_func_tpacpi(TPACPI_LED_MUTE, !enabled); > +#endif > +#if IS_ENABLED(CONFIG_HID_LENOVO) > + if (led_set_func_hid_lenovo) > +

DO YOU NEED A LOAN??

2016-12-12 Thread bancoleite
Are you in need of a loan? Apply for more details. -- To unsubscribe from this list: send the line "unsubscribe linux-sound" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH 2/4] hid-lenovo: Add support for X1 Tablet cover LED control

2016-12-09 Thread Dennis Wassenberg
Add support for controlling MUTE, MICMUTE and FNLOCK LEDs. In ordner to enable MUTE and MICMUTE LED control over thinkpad_helper the external interface hid_lenovo_led_set is introduced. This enables setting Lenovo LEDs from external. This is needed because the X1 Tablet Cover is the first

[PATCH v2 2/2] hda: thinkpad_helper: Add support for hid-lenovo LED control

2016-09-14 Thread Dennis Wassenberg
Make the thinkpad_helper able to support not only led control over acpi with thinkpad_acpi driver but also led control over hid-lenovo. The hid-lenovo driver adapted the led control api of thinkpad_acpi. Make the thinkpad_acpi and hid-lenovo able to work combined to support connected Lenovo USB

Re: [PATCH 4/4] hda: thinkpad_helper: Add support for hid-lenovo LED control

2016-09-12 Thread Takashi Iwai
On Mon, 12 Sep 2016 12:47:03 +0200, Dennis Wassenberg wrote: > > Make the thinkpad_helper able to support not only led control over > acpi with thinkpad_acpi driver but also led control over hid-lenovo. > The hid-lenovo driver adapted the led control api of thinkpad_acpi. > > Signed-off-by:

Questions about thinkpad_helper

2016-08-30 Thread Dennis Wassenberg
Hi all, I wrote a driver which handles the function / special keys for ThinKeyboard of Lenovo ThinkPad X1 Tablet 2016 including LED control. This Keyboard is connected via USB to the Tablet. I added the driver to hid-lenovo.c file because there are HID drivers included for different Lenovo

Re: [2.6 patch] schedule obsolete OSS drivers for removal (version 2)

2005-08-09 Thread Adrian Bunk
On Tue, Aug 09, 2005 at 01:13:51PM -0400, Lee Revell wrote: On Fri, 2005-07-29 at 17:32 +0200, Adrian Bunk wrote: This patch schedules obsolete OSS drivers (with ALSA drivers that support the same hardware) for removal. Scheduling the via82cxxx driver for removal was ACK'ed by Jeff

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

2005-08-01 Thread Andrew Haninger
On 7/31/05, Adrian Bunk [EMAIL PROTECTED] wrote: Can you send me the bug numbers in the ALSA bug tracking system if you have to send bug reports, so that I can track when these issues will be resolved? Thorsten: Please remember to include the list(s) when emailing those links/numbers. I'd like

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

2005-08-01 Thread Thorsten Knabe
On Mon, 1 Aug 2005, Andrew Haninger wrote: Thorsten: Please remember to include the list(s) when emailing those links/numbers. I'd like to be able to watch it, too, and add any information that I can, rather than entering a duplicate bug. Hello. I have taken a closer look at the ALSA AD1816

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

2005-07-31 Thread Adrian Bunk
On Wed, Jul 27, 2005 at 01:38:37AM +0200, Zoran Dzelajlija wrote: Zach Brown [EMAIL PROTECTED] wrote: Adrian Bunk wrote: This patch schedules obsolete OSS drivers (with ALSA drivers that support the same hardware) for removal. I've Cc'ed the people listed in MAINTAINERS as being

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

2005-07-29 Thread Jaroslav Kysela
On Thu, 28 Jul 2005, Thorsten Knabe wrote: On Tue, 26 Jul 2005, Adrian Bunk wrote: This patch schedules obsolete OSS drivers (with ALSA drivers that support the same hardware) for removal. Hello Adrian. I'm the maintainer of the OSS AD1816 sound driver. I'm aware of two problems of

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

2005-07-28 Thread Takashi Iwai
At Wed, 27 Jul 2005 01:38:37 +0200, Zoran Dzelajlija wrote: Zach Brown [EMAIL PROTECTED] wrote: Adrian Bunk wrote: This patch schedules obsolete OSS drivers (with ALSA drivers that support the same hardware) for removal. I've Cc'ed the people listed in MAINTAINERS as being

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

2005-07-28 Thread Alan Cox
On Mer, 2005-07-27 at 16:43 -0400, Jeff Garzik wrote: ISTR Alan saying there was some ALi hardware that either wasn't in ALSA, or most likely didn't work in ALSA. If Alan says I'm smoking crack, then you all can ignore me :) The only big thing I know that still needed OSS (and may still do

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

2005-07-28 Thread Jaroslav Kysela
On Thu, 28 Jul 2005, Alan Cox wrote: On Mer, 2005-07-27 at 16:43 -0400, Jeff Garzik wrote: ISTR Alan saying there was some ALi hardware that either wasn't in ALSA, or most likely didn't work in ALSA. If Alan says I'm smoking crack, then you all can ignore me :) The only big thing I

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

2005-07-27 Thread Zoran Dzelajlija
Zach Brown [EMAIL PROTECTED] wrote: Adrian Bunk wrote: This patch schedules obsolete OSS drivers (with ALSA drivers that support the same hardware) for removal. I've Cc'ed the people listed in MAINTAINERS as being responsible for one or more of these drivers, and I've also Cc'ed the

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

2005-07-27 Thread Adrian Bunk
On Tue, Jul 26, 2005 at 11:57:04AM -0400, Jeff Garzik wrote: Lee Revell wrote: 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. How many non-obsolete OSS drivers were there?

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

2005-07-27 Thread John W. Linville
On Wed, Jul 27, 2005 at 08:24:28PM +0200, Adrian Bunk wrote: I've grep'ed a second time for every single PCI ID in the OSS i810_audio, and I still haven't found WTF you are talking about. I looked as well, and I found nothing either. Jeff, can you enlighten us? John -- John W. Linville

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

2005-07-27 Thread Rogério Brito
On Jul 27 2005, Lee Revell wrote: On Wed, 2005-07-27 at 01:38 +0200, Zoran Dzelajlija wrote: The OSS maestro driver works better on my old Armada E500 laptop. I tried ALSA after switching to 2.6, but the computer hung with 2.6.8.1 or 2.6.10 if I touched the volume buttons. Please test a

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

2005-07-26 Thread Andrew Haninger
On 7/26/05, Adrian Bunk [EMAIL PROTECTED] wrote: config SOUND_OPL3SA2 tristate Yamaha OPL3-SA2 and SA3 based PnP cards - depends on SOUND_OSS + depends on SOUND_OSS OBSOLETE_OSS_DRIVER help Say Y or M if you have a card based on one of these Yamaha

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

2005-07-26 Thread Zach Brown
Adrian Bunk wrote: This patch schedules obsolete OSS drivers (with ALSA drivers that support the same hardware) for removal. I've Cc'ed the people listed in MAINTAINERS as being responsible for one or more of these drivers, and I've also Cc'ed the ALSA people. I haven't touched the maestro

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

2005-07-26 Thread Krzysztof Halasa
Zach Brown [EMAIL PROTECTED] writes: I haven't touched the maestro drivers in so long (for near-total lack of docs, etc.) that I can't be considered authoritative for approving it's removal. Maestro3 ALSA does work fine for me. -- Krzysztof Halasa - To unsubscribe from this list: send the