All of lore.kernel.org
 help / color / mirror / Atom feed
* Patch:  Add support for Medion laptops.
@ 2006-10-12 19:27 Tobin Davis
  2006-10-12 19:39 ` Takashi Iwai
  0 siblings, 1 reply; 8+ messages in thread
From: Tobin Davis @ 2006-10-12 19:27 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 287 bytes --]

Summary:  Add support for Medion laptops

Description:
        This patch adds audio support for Medion's line of laptops,
        based on code shipped with the laptops.  Microphone support is
        still being explored.
        
Signed off by: 
-- 
Tobin Davis <tdavis@dsl-only.net>

[-- Attachment #2: medion.patch --]
[-- Type: text/x-patch, Size: 3300 bytes --]

--- alsa-driver/alsa-kernel/pci/hda/patch_realtek.c.orig	2006-10-08 10:58:28.000000000 -0700
+++ alsa-driver/alsa-kernel/pci/hda/patch_realtek.c	2006-10-11 11:03:13.000000000 -0700
@@ -112,6 +112,7 @@
 	ALC883_6ST_DIG,
 	ALC888_DEMO_BOARD,
 	ALC883_ACER,
+	ALC883_MEDION,
 	ALC883_AUTO,
 	ALC883_MODEL_LAST,
 };
@@ -4309,7 +4310,7 @@
 static struct hda_verb alc882_eapd_verbs[] = {
 	/* change to EAPD mode */
 	{0x20, AC_VERB_SET_COEF_INDEX, 0x07},
-	{0x20, AC_VERB_SET_PROC_COEF, 0x3060},
+	{0x20, AC_VERB_SET_PROC_COEF, 0x3070},
 	{ } 
 };
 
@@ -4875,6 +4876,41 @@
 	{ } /* end */
 };
 
+static snd_kcontrol_new_t alc883_fivestack_mixer[] = {
+	HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
+	HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
+	HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
+	HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
+	HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
+	HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
+	HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
+	HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
+	HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
+	HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
+	HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
+	HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
+	HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
+	HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
+	HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
+	HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
+
+	{
+		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
+		/* .name = "Capture Source", */
+		.name = "Input Source",
+		.count = 1,
+		.info = alc883_mux_enum_info,
+		.get = alc883_mux_enum_get,
+		.put = alc883_mux_enum_put,
+	},
+	{ } /* end */
+};
+
 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
 	{
 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
@@ -5080,6 +5116,8 @@
 	  .config = ALC883_ACER },
 	{ .pci_subvendor = 0x1025, .pci_subdevice = 0x009f,
 	  .config = ALC883_ACER },
+	{ .pci_subvendor = 0x161f, .pci_subdevice = 0x2054,
+	  .modelname = "medion", .config = ALC883_MEDION }
 	{ .modelname = "auto", .config = ALC883_AUTO },
 	{}
 };
@@ -5167,6 +5205,20 @@
 		.channel_mode = alc883_3ST_2ch_modes,
 		.input_mux = &alc883_capture_source,
 	},
+	[ALC883_MEDION] = {
+		.mixers = { alc883_fivestack_mixer,
+			    alc883_chmode_mixer },
+		.init_verbs = { alc883_init_verbs,
+				alc882_eapd_verbs },
+		.num_dacs = ARRAY_SIZE(alc883_dac_nids),
+		.dac_nids = alc883_dac_nids,
+		.num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
+		.adc_nids = alc883_adc_nids,
+		.num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
+		.channel_mode = alc883_sixstack_modes,
+		.input_mux = &alc883_capture_source,
+	}
+
 };
 
 

[-- Attachment #3: Type: text/plain, Size: 373 bytes --]

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

[-- Attachment #4: Type: text/plain, Size: 161 bytes --]

_______________________________________________
Alsa-devel mailing list
Alsa-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Patch:  Add support for Medion laptops.
  2006-10-12 19:27 Patch: Add support for Medion laptops Tobin Davis
@ 2006-10-12 19:39 ` Takashi Iwai
  2006-10-12 20:04   ` Tobin Davis
  0 siblings, 1 reply; 8+ messages in thread
From: Takashi Iwai @ 2006-10-12 19:39 UTC (permalink / raw)
  To: Tobin Davis; +Cc: alsa-devel

At Thu, 12 Oct 2006 12:27:49 -0700,
Tobin Davis wrote:
> 
> Summary:  Add support for Medion laptops
> 
> Description:
>         This patch adds audio support for Medion's line of laptops,
>         based on code shipped with the laptops.  Microphone support is
>         still being explored.

Don't forget to add the model entry in ALSA-Configuration.txt, too.
Otherwise it looks fine.

Thanks,

Takashi

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Patch:  Add support for Medion laptops.
  2006-10-12 19:39 ` Takashi Iwai
@ 2006-10-12 20:04   ` Tobin Davis
  2006-10-13 10:37     ` Takashi Iwai
  0 siblings, 1 reply; 8+ messages in thread
From: Tobin Davis @ 2006-10-12 20:04 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 547 bytes --]

On Thu, 2006-10-12 at 21:39 +0200, Takashi Iwai wrote:
> At Thu, 12 Oct 2006 12:27:49 -0700,
> Tobin Davis wrote:
> > 
> > Summary:  Add support for Medion laptops
> > 
> > Description:
> >         This patch adds audio support for Medion's line of laptops,
> >         based on code shipped with the laptops.  Microphone support is
> >         still being explored.
> 
> Don't forget to add the model entry in ALSA-Configuration.txt, too.
> Otherwise it looks fine.
Done.  I added it to the original patch.

-- 
Tobin Davis <tdavis@dsl-only.net>

[-- Attachment #2: medion.patch --]
[-- Type: text/x-patch, Size: 3780 bytes --]

--- alsa-driver/alsa-kernel/pci/hda/patch_realtek.c.orig	2006-10-08 10:58:28.000000000 -0700
+++ alsa-driver/alsa-kernel/pci/hda/patch_realtek.c	2006-10-11 11:03:13.000000000 -0700
@@ -112,6 +112,7 @@
 	ALC883_6ST_DIG,
 	ALC888_DEMO_BOARD,
 	ALC883_ACER,
+	ALC883_MEDION,
 	ALC883_AUTO,
 	ALC883_MODEL_LAST,
 };
@@ -4309,7 +4310,7 @@
 static struct hda_verb alc882_eapd_verbs[] = {
 	/* change to EAPD mode */
 	{0x20, AC_VERB_SET_COEF_INDEX, 0x07},
-	{0x20, AC_VERB_SET_PROC_COEF, 0x3060},
+	{0x20, AC_VERB_SET_PROC_COEF, 0x3070},
 	{ } 
 };
 
@@ -4875,6 +4876,41 @@
 	{ } /* end */
 };
 
+static snd_kcontrol_new_t alc883_fivestack_mixer[] = {
+	HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
+	HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
+	HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
+	HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
+	HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
+	HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
+	HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
+	HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
+	HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
+	HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
+	HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
+	HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
+	HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
+	HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
+	HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
+	HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
+	HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
+
+	{
+		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
+		/* .name = "Capture Source", */
+		.name = "Input Source",
+		.count = 1,
+		.info = alc883_mux_enum_info,
+		.get = alc883_mux_enum_get,
+		.put = alc883_mux_enum_put,
+	},
+	{ } /* end */
+};
+
 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
 	{
 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
@@ -5080,6 +5116,8 @@
 	  .config = ALC883_ACER },
 	{ .pci_subvendor = 0x1025, .pci_subdevice = 0x009f,
 	  .config = ALC883_ACER },
+	{ .pci_subvendor = 0x161f, .pci_subdevice = 0x2054,
+	  .modelname = "medion", .config = ALC883_MEDION }
 	{ .modelname = "auto", .config = ALC883_AUTO },
 	{}
 };
@@ -5167,6 +5205,20 @@
 		.channel_mode = alc883_3ST_2ch_modes,
 		.input_mux = &alc883_capture_source,
 	},
+	[ALC883_MEDION] = {
+		.mixers = { alc883_fivestack_mixer,
+			    alc883_chmode_mixer },
+		.init_verbs = { alc883_init_verbs,
+				alc882_eapd_verbs },
+		.num_dacs = ARRAY_SIZE(alc883_dac_nids),
+		.dac_nids = alc883_dac_nids,
+		.num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
+		.adc_nids = alc883_adc_nids,
+		.num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
+		.channel_mode = alc883_sixstack_modes,
+		.input_mux = &alc883_capture_source,
+	}
+
 };
 
 
--- alsa-driver/alsa-kernel/Documentation/ALSA-Configuration.txt~	2006-10-08 09:54:15.000000000 -0700
+++ alsa-driver/alsa-kernel/Documentation/ALSA-Configuration.txt	2006-10-12 13:02:36.000000000 -0700
@@ -822,6 +822,7 @@
 	  3stack-6ch-dig 3-jack 6-channel with SPDIF I/O
 	  6stack-dig-demo  6-jack digital for Intel demo board
 	  acer		Acer laptops (Travelmate 3012WTMi, Aspire 5600, etc)
+	  medion	Medion Laptops
 	  auto		auto-config reading BIOS (default)
 
 	ALC861/660

[-- Attachment #3: Type: text/plain, Size: 373 bytes --]

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

[-- Attachment #4: Type: text/plain, Size: 161 bytes --]

_______________________________________________
Alsa-devel mailing list
Alsa-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Patch:  Add support for Medion laptops.
  2006-10-12 20:04   ` Tobin Davis
@ 2006-10-13 10:37     ` Takashi Iwai
  2006-10-13 14:51       ` Remy Bruno
  0 siblings, 1 reply; 8+ messages in thread
From: Takashi Iwai @ 2006-10-13 10:37 UTC (permalink / raw)
  To: Tobin Davis; +Cc: alsa-devel

At Thu, 12 Oct 2006 13:04:58 -0700,
Tobin Davis wrote:
> 
> [1  <text/plain (7bit)>]
> On Thu, 2006-10-12 at 21:39 +0200, Takashi Iwai wrote:
> > At Thu, 12 Oct 2006 12:27:49 -0700,
> > Tobin Davis wrote:
> > > 
> > > Summary:  Add support for Medion laptops
> > > 
> > > Description:
> > >         This patch adds audio support for Medion's line of laptops,
> > >         based on code shipped with the laptops.  Microphone support is
> > >         still being explored.
> > 
> > Don't forget to add the model entry in ALSA-Configuration.txt, too.
> > Otherwise it looks fine.
> Done.  I added it to the original patch.

Thanks.  Applied to HG tree now.


Takashi

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Patch:  Add support for Medion laptops.
  2006-10-13 10:37     ` Takashi Iwai
@ 2006-10-13 14:51       ` Remy Bruno
  2006-10-13 17:12         ` Tobin Davis
  0 siblings, 1 reply; 8+ messages in thread
From: Remy Bruno @ 2006-10-13 14:51 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

Hi,

Sorry, I've been quite busy these days.
I'm sorry to say that the last HG tree doesn't work for my Medion laptop. This
is strange because I seem to have the same laptop as albox and Andrew, and it
works for them! But I tried last Tobin's patch which didn't work, and the last
HG tree does the same. The effect is as usual: it seems to work, but no sound.
I tried again my hack to be sure, and this one's still working. With the HG
tree, I'm still having these xruns that I don't have with the hacked tree.  I
tried to use the last alsa-lib, but with no more success.

Andrew & albox: are you doing something special?

Remy

On Friday 13 October at 12:37, Takashi Iwai wrote:
> At Thu, 12 Oct 2006 13:04:58 -0700,
> Tobin Davis wrote:
> > 
> > [1  <text/plain (7bit)>]
> > On Thu, 2006-10-12 at 21:39 +0200, Takashi Iwai wrote:
> > > At Thu, 12 Oct 2006 12:27:49 -0700,
> > > Tobin Davis wrote:
> > > > 
> > > > Summary:  Add support for Medion laptops
> > > > 
> > > > Description:
> > > >         This patch adds audio support for Medion's line of laptops,
> > > >         based on code shipped with the laptops.  Microphone support is
> > > >         still being explored.
> > > 
> > > Don't forget to add the model entry in ALSA-Configuration.txt, too.
> > > Otherwise it looks fine.
> > Done.  I added it to the original patch.
> 
> Thanks.  Applied to HG tree now.
> 
> 
> Takashi
> 
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/alsa-devel

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Patch:  Add support for Medion laptops.
@ 2006-10-13 15:47 albox
  0 siblings, 0 replies; 8+ messages in thread
From: albox @ 2006-10-13 15:47 UTC (permalink / raw)
  To: remy.bruno; +Cc: alsa-devel

Hi,
No I didn't do something special. I have just compiled and installed the patched
driver (using the 2 patches I received by email).
I'm off for the week-end so I won't be able to answer before Monday.

Cheers,
Al

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Patch:  Add support for Medion laptops.
  2006-10-13 14:51       ` Remy Bruno
@ 2006-10-13 17:12         ` Tobin Davis
  2006-10-13 18:18           ` Thierry Vignaud
  0 siblings, 1 reply; 8+ messages in thread
From: Tobin Davis @ 2006-10-13 17:12 UTC (permalink / raw)
  To: Remy Bruno; +Cc: Takashi Iwai, alsa-devel

Double check to see if you have any "model=" lines in your modprobe
file.  Also, compile with "--with-debug=detect", load the driver, and
post the output from "dmesg" & "cat /proc/asound/card0/codec#*".

I noticed that Takashi fixed a missing comma in my patch in the
alc883_cfg_tbl, at the end of the MEDION line (thanks, Takashi).  Make
sure that you have this correction.

Tobin

On Fri, 2006-10-13 at 16:51 +0200, Remy Bruno wrote:
> Hi,
> 
> Sorry, I've been quite busy these days.
> I'm sorry to say that the last HG tree doesn't work for my Medion laptop. This
> is strange because I seem to have the same laptop as albox and Andrew, and it
> works for them! But I tried last Tobin's patch which didn't work, and the last
> HG tree does the same. The effect is as usual: it seems to work, but no sound.
> I tried again my hack to be sure, and this one's still working. With the HG
> tree, I'm still having these xruns that I don't have with the hacked tree.  I
> tried to use the last alsa-lib, but with no more success.
> 
> Andrew & albox: are you doing something special?
> 
> Remy
> 
> On Friday 13 October at 12:37, Takashi Iwai wrote:
> > At Thu, 12 Oct 2006 13:04:58 -0700,
> > Tobin Davis wrote:
> > > 
> > > [1  <text/plain (7bit)>]
> > > On Thu, 2006-10-12 at 21:39 +0200, Takashi Iwai wrote:
> > > > At Thu, 12 Oct 2006 12:27:49 -0700,
> > > > Tobin Davis wrote:
> > > > > 
> > > > > Summary:  Add support for Medion laptops
> > > > > 
> > > > > Description:
> > > > >         This patch adds audio support for Medion's line of laptops,
> > > > >         based on code shipped with the laptops.  Microphone support is
> > > > >         still being explored.
> > > > 
> > > > Don't forget to add the model entry in ALSA-Configuration.txt, too.
> > > > Otherwise it looks fine.
> > > Done.  I added it to the original patch.
> > 
> > Thanks.  Applied to HG tree now.
> > 
> > 
> > Takashi
> > 
> > -------------------------------------------------------------------------
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job easier
> > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > _______________________________________________
> > Alsa-devel mailing list
> > Alsa-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/alsa-devel
-- 
Tobin Davis <tdavis@dsl-only.net>


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Patch:  Add support for Medion laptops.
  2006-10-13 17:12         ` Tobin Davis
@ 2006-10-13 18:18           ` Thierry Vignaud
  0 siblings, 0 replies; 8+ messages in thread
From: Thierry Vignaud @ 2006-10-13 18:18 UTC (permalink / raw)
  To: Tobin Davis; +Cc: Takashi Iwai, alsa-devel

Tobin Davis <tdavis@dsl-only.net> writes:

> Double check to see if you have any "model=" lines in your modprobe
> file.  Also, compile with "--with-debug=detect", load the driver,
> and post the output from "dmesg" & "cat /proc/asound/card0/codec#*".

btw, if model is overriden by a parameter, the driver should just
print that info (eg: "model overriden by user: XXX") so that this
could be guessed from dmesg output and help some lost end users.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2006-10-13 18:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-12 19:27 Patch: Add support for Medion laptops Tobin Davis
2006-10-12 19:39 ` Takashi Iwai
2006-10-12 20:04   ` Tobin Davis
2006-10-13 10:37     ` Takashi Iwai
2006-10-13 14:51       ` Remy Bruno
2006-10-13 17:12         ` Tobin Davis
2006-10-13 18:18           ` Thierry Vignaud
  -- strict thread matches above, loose matches on Subject: below --
2006-10-13 15:47 albox

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.