* 0x10b9:0x5461 not supported?
@ 2005-07-20 13:12 Dirk
2005-07-20 14:08 ` Clemens Ladisch
0 siblings, 1 reply; 11+ messages in thread
From: Dirk @ 2005-07-20 13:12 UTC (permalink / raw)
To: alsa-devel
http://pciids.sourceforge.net/iii/?i=10b95461
Doesn't work with snd_hda_intel or anything else I tried...
Dirk
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-20 13:12 0x10b9:0x5461 not supported? Dirk
@ 2005-07-20 14:08 ` Clemens Ladisch
2005-07-20 18:33 ` Dirk
0 siblings, 1 reply; 11+ messages in thread
From: Clemens Ladisch @ 2005-07-20 14:08 UTC (permalink / raw)
To: Dirk; +Cc: alsa-devel
Dirk wrote:
> http://pciids.sourceforge.net/iii/?i=10b95461
>
> Doesn't work with snd_hda_intel or anything else I tried...
We don't have any documentation for this chip.
The CVS version of this driver assumes that this chip is compatible
with the Intel HDA controller; please test it.
HTH
Clemens
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-20 18:33 ` Dirk
@ 2005-07-20 18:07 ` Peter Zubaj
2005-07-20 18:33 ` Dirk
2005-07-21 8:48 ` Clemens Ladisch
1 sibling, 1 reply; 11+ messages in thread
From: Peter Zubaj @ 2005-07-20 18:07 UTC (permalink / raw)
To: Dirk; +Cc: Clemens Ladisch, alsa-devel
Hi,
Did you try to add this pci id in pci_device_id azx_ids table in file
hda_intel.c ?
Peter Zubaj
On Wed, 2005-07-20 at 20:33 +0200, Dirk wrote:
> Clemens Ladisch wrote:
>
> >Dirk wrote:
> >
> >
> >>http://pciids.sourceforge.net/iii/?i=10b95461
> >>
> >>Doesn't work with snd_hda_intel or anything else I tried...
> >>
> >>
> >
> >We don't have any documentation for this chip.
> >
> >The CVS version of this driver assumes that this chip is compatible
> >with the Intel HDA controller; please test it.
> >
> >
>
> That's exactly what I tried. I also tried the hacked alsa-driver from
> the download pages of Realtek and the Mainboard manufacturer. But
> nothing worked. The driver loads fine but there is no mixer and no sound.
>
> The mainboard description
> (http://www.asus.com/prog/spec.asp?m=P5RD1-V&langs=01) says it's a
> Realtek ALC 861... but "lspci -n" identifies (0x10b9) ALi and not
> RealTek... :-/
>
> ALi's site doesn't list this card or chip (I looked for "5461" and
> "M5461") at all. So I guess the mainboard description is right and lspci
> is "wrong"... Dunno..
>
> Dirk
>
>
>
> -------------------------------------------------------
> SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
> from IBM. Find simple to follow Roadmaps, straightforward articles,
> informative Webcasts and more! Get everything you need to get up to
> speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/alsa-devel
>
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-20 18:07 ` Peter Zubaj
@ 2005-07-20 18:33 ` Dirk
2005-07-20 19:42 ` Peter Zubaj
0 siblings, 1 reply; 11+ messages in thread
From: Dirk @ 2005-07-20 18:33 UTC (permalink / raw)
To: Peter Zubaj; +Cc: Clemens Ladisch, alsa-devel
Hey!
I tried that right now (Kernel 2.6.12.3).
sound/pci/hda/hda_intel.c
/* PCI IDs */
static struct pci_device_id azx_ids[] = {
{ 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH6 */
{ 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH7 */
{ 0x8086, 0x269a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ESB2 */
{ 0x10b9, 0x5461, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* test */
{ 0, }
};
and after reloading the module it says
ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
[...]
and it doesn't look like it will stop anytime soon...
Dirk
>Hi,
>
>Did you try to add this pci id in pci_device_id azx_ids table in file
>hda_intel.c ?
>
>Peter Zubaj
>
>On Wed, 2005-07-20 at 20:33 +0200, Dirk wrote:
>
>
>>Clemens Ladisch wrote:
>>
>>
>>
>>>Dirk wrote:
>>>
>>>
>>>
>>>
>>>>http://pciids.sourceforge.net/iii/?i=10b95461
>>>>
>>>>Doesn't work with snd_hda_intel or anything else I tried...
>>>>
>>>>
>>>>
>>>>
>>>We don't have any documentation for this chip.
>>>
>>>The CVS version of this driver assumes that this chip is compatible
>>>with the Intel HDA controller; please test it.
>>>
>>>
>>>
>>>
>>That's exactly what I tried. I also tried the hacked alsa-driver from
>>the download pages of Realtek and the Mainboard manufacturer. But
>>nothing worked. The driver loads fine but there is no mixer and no sound.
>>
>>The mainboard description
>>(http://www.asus.com/prog/spec.asp?m=P5RD1-V&langs=01) says it's a
>>Realtek ALC 861... but "lspci -n" identifies (0x10b9) ALi and not
>>RealTek... :-/
>>
>>ALi's site doesn't list this card or chip (I looked for "5461" and
>>"M5461") at all. So I guess the mainboard description is right and lspci
>>is "wrong"... Dunno..
>>
>>Dirk
>>
>>
>>
>>-------------------------------------------------------
>>SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
>>from IBM. Find simple to follow Roadmaps, straightforward articles,
>>informative Webcasts and more! Get everything you need to get up to
>>speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
>>_______________________________________________
>>Alsa-devel mailing list
>>Alsa-devel@lists.sourceforge.net
>>https://lists.sourceforge.net/lists/listinfo/alsa-devel
>>
>>
>>
>
>
>
>-------------------------------------------------------
>SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
>from IBM. Find simple to follow Roadmaps, straightforward articles,
>informative Webcasts and more! Get everything you need to get up to
>speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
>_______________________________________________
>Alsa-devel mailing list
>Alsa-devel@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/alsa-devel
>
>
>
>
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-20 14:08 ` Clemens Ladisch
@ 2005-07-20 18:33 ` Dirk
2005-07-20 18:07 ` Peter Zubaj
2005-07-21 8:48 ` Clemens Ladisch
0 siblings, 2 replies; 11+ messages in thread
From: Dirk @ 2005-07-20 18:33 UTC (permalink / raw)
To: Clemens Ladisch; +Cc: alsa-devel
Clemens Ladisch wrote:
>Dirk wrote:
>
>
>>http://pciids.sourceforge.net/iii/?i=10b95461
>>
>>Doesn't work with snd_hda_intel or anything else I tried...
>>
>>
>
>We don't have any documentation for this chip.
>
>The CVS version of this driver assumes that this chip is compatible
>with the Intel HDA controller; please test it.
>
>
That's exactly what I tried. I also tried the hacked alsa-driver from
the download pages of Realtek and the Mainboard manufacturer. But
nothing worked. The driver loads fine but there is no mixer and no sound.
The mainboard description
(http://www.asus.com/prog/spec.asp?m=P5RD1-V&langs=01) says it's a
Realtek ALC 861... but "lspci -n" identifies (0x10b9) ALi and not
RealTek... :-/
ALi's site doesn't list this card or chip (I looked for "5461" and
"M5461") at all. So I guess the mainboard description is right and lspci
is "wrong"... Dunno..
Dirk
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-20 18:33 ` Dirk
@ 2005-07-20 19:42 ` Peter Zubaj
2005-07-21 0:22 ` Dirk
0 siblings, 1 reply; 11+ messages in thread
From: Peter Zubaj @ 2005-07-20 19:42 UTC (permalink / raw)
To: Dirk; +Cc: Clemens Ladisch, alsa-devel
This looks like old alsa version. Could you try alsa CVS version ?
Peter Zubaj
On Wed, 2005-07-20 at 20:33 +0200, Dirk wrote:
> Hey!
> I tried that right now (Kernel 2.6.12.3).
>
> sound/pci/hda/hda_intel.c
>
> /* PCI IDs */
> static struct pci_device_id azx_ids[] = {
> { 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH6 */
> { 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH7 */
> { 0x8086, 0x269a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ESB2 */
> { 0x10b9, 0x5461, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* test */
> { 0, }
> };
>
>
> and after reloading the module it says
>
> ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
> ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
> ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
> ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
> ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
> ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
> [...]
>
> and it doesn't look like it will stop anytime soon...
>
> Dirk
>
>
>
> >Hi,
> >
> >Did you try to add this pci id in pci_device_id azx_ids table in file
> >hda_intel.c ?
> >
> >Peter Zubaj
> >
> >On Wed, 2005-07-20 at 20:33 +0200, Dirk wrote:
> >
> >
> >>Clemens Ladisch wrote:
> >>
> >>
> >>
> >>>Dirk wrote:
> >>>
> >>>
> >>>
> >>>
> >>>>http://pciids.sourceforge.net/iii/?i=10b95461
> >>>>
> >>>>Doesn't work with snd_hda_intel or anything else I tried...
> >>>>
> >>>>
> >>>>
> >>>>
> >>>We don't have any documentation for this chip.
> >>>
> >>>The CVS version of this driver assumes that this chip is compatible
> >>>with the Intel HDA controller; please test it.
> >>>
> >>>
> >>>
> >>>
> >>That's exactly what I tried. I also tried the hacked alsa-driver from
> >>the download pages of Realtek and the Mainboard manufacturer. But
> >>nothing worked. The driver loads fine but there is no mixer and no sound.
> >>
> >>The mainboard description
> >>(http://www.asus.com/prog/spec.asp?m=P5RD1-V&langs=01) says it's a
> >>Realtek ALC 861... but "lspci -n" identifies (0x10b9) ALi and not
> >>RealTek... :-/
> >>
> >>ALi's site doesn't list this card or chip (I looked for "5461" and
> >>"M5461") at all. So I guess the mainboard description is right and lspci
> >>is "wrong"... Dunno..
> >>
> >>Dirk
> >>
> >>
> >>
> >>-------------------------------------------------------
> >>SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
> >>from IBM. Find simple to follow Roadmaps, straightforward articles,
> >>informative Webcasts and more! Get everything you need to get up to
> >>speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
> >>_______________________________________________
> >>Alsa-devel mailing list
> >>Alsa-devel@lists.sourceforge.net
> >>https://lists.sourceforge.net/lists/listinfo/alsa-devel
> >>
> >>
> >>
> >
> >
> >
> >-------------------------------------------------------
> >SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
> >from IBM. Find simple to follow Roadmaps, straightforward articles,
> >informative Webcasts and more! Get everything you need to get up to
> >speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
> >_______________________________________________
> >Alsa-devel mailing list
> >Alsa-devel@lists.sourceforge.net
> >https://lists.sourceforge.net/lists/listinfo/alsa-devel
> >
> >
> >
> >
>
>
>
> -------------------------------------------------------
> SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
> from IBM. Find simple to follow Roadmaps, straightforward articles,
> informative Webcasts and more! Get everything you need to get up to
> speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/alsa-devel
>
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-20 19:42 ` Peter Zubaj
@ 2005-07-21 0:22 ` Dirk
0 siblings, 0 replies; 11+ messages in thread
From: Dirk @ 2005-07-21 0:22 UTC (permalink / raw)
To: Peter Zubaj; +Cc: Clemens Ladisch, alsa-devel
I checked out alsa-kernel and alsa-driver...
cd alsa-driver
./cvscompile
make install
make install-modules
didn't work (I'd read INSTALL) there were still the old drivers in
/lib/modules/2.6.12.3/.../sound/
so I'd...
ln -sf alsa-driver /usr/src/linux/sound
cd /usr/src/linux
make modules_install
modprobe snd-hda-intel
which didn't work either (snd_hda_intel: unknown symbol...)
...I guess I never done this before
Give me a quick HOWTO and I'll continue..
Dirk
>This looks like old alsa version. Could you try alsa CVS version ?
>
>
>
It was the alsa stuff included in 2.6.12.3.
>Peter Zubaj
>
>
>On Wed, 2005-07-20 at 20:33 +0200, Dirk wrote:
>
>
>>Hey!
>>I tried that right now (Kernel 2.6.12.3).
>>
>>sound/pci/hda/hda_intel.c
>>
>>/* PCI IDs */
>>static struct pci_device_id azx_ids[] = {
>> { 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH6 */
>> { 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH7 */
>> { 0x8086, 0x269a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ESB2 */
>> { 0x10b9, 0x5461, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* test */
>> { 0, }
>>};
>>
>>
>>and after reloading the module it says
>>
>>ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
>>ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
>>ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
>>ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
>>ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
>>ALSA sound/pci/hda/hda_intel.c:442: azx_get_response timeout
>>[...]
>>
>>and it doesn't look like it will stop anytime soon...
>>
>>Dirk
>>
>>
>>
>>
>>
>>>Hi,
>>>
>>>Did you try to add this pci id in pci_device_id azx_ids table in file
>>>hda_intel.c ?
>>>
>>>Peter Zubaj
>>>
>>>
>>>
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-20 18:33 ` Dirk
2005-07-20 18:07 ` Peter Zubaj
@ 2005-07-21 8:48 ` Clemens Ladisch
2005-07-21 11:20 ` Dirk
2005-07-21 14:36 ` Dirk
1 sibling, 2 replies; 11+ messages in thread
From: Clemens Ladisch @ 2005-07-21 8:48 UTC (permalink / raw)
To: Dirk; +Cc: alsa-devel
Dirk wrote:
> The mainboard description
> (http://www.asus.com/prog/spec.asp?m=P5RD1-V&langs=01) says it's a
> Realtek ALC 861... but "lspci -n" identifies (0x10b9) ALi and not
> RealTek... :-/
The PCI device is an HDA controller, the Realtek chip is an HDA codec.
HDA is a specification for a bus to connect these two.
It has been confirmed that the controller isn't compatible with the
Intel HDA controller, so you don't need to try to get it to compile.
We have to try to get documentation from ALi.
Regards,
Clemens
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-21 8:48 ` Clemens Ladisch
@ 2005-07-21 11:20 ` Dirk
2005-07-21 14:36 ` Dirk
1 sibling, 0 replies; 11+ messages in thread
From: Dirk @ 2005-07-21 11:20 UTC (permalink / raw)
To: Clemens Ladisch; +Cc: alsa-devel
Clemens Ladisch wrote:
>Dirk wrote:
>
>
>>The mainboard description
>>(http://www.asus.com/prog/spec.asp?m=P5RD1-V&langs=01) says it's a
>>Realtek ALC 861... but "lspci -n" identifies (0x10b9) ALi and not
>>RealTek... :-/
>>
>>
>
>The PCI device is an HDA controller, the Realtek chip is an HDA codec.
>HDA is a specification for a bus to connect these two.
>
>
>It has been confirmed that the controller isn't compatible with the
>Intel HDA controller, so you don't need to try to get it to compile.
>We have to try to get documentation from ALi.
>
>
>Regards,
>Clemens
>
>
Ok, just let me know then if I can be of any help...
Dirk
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-21 8:48 ` Clemens Ladisch
2005-07-21 11:20 ` Dirk
@ 2005-07-21 14:36 ` Dirk
2005-07-21 14:49 ` Clemens Ladisch
1 sibling, 1 reply; 11+ messages in thread
From: Dirk @ 2005-07-21 14:36 UTC (permalink / raw)
To: Clemens Ladisch; +Cc: alsa-devel
Clemens Ladisch wrote:
>Dirk wrote:
>
>
>>The mainboard description
>>(http://www.asus.com/prog/spec.asp?m=P5RD1-V&langs=01) says it's a
>>Realtek ALC 861... but "lspci -n" identifies (0x10b9) ALi and not
>>RealTek... :-/
>>
>>
>
>The PCI device is an HDA controller, the Realtek chip is an HDA codec.
>HDA is a specification for a bus to connect these two.
>
>
>It has been confirmed that the controller isn't compatible with the
>Intel HDA controller, so you don't need to try to get it to compile.
>We have to try to get documentation from ALi.
>
>
>Regards,
>Clemens
>
>
>
One last thing...
Maybe this does help a little:
http://dlsvr01.asus.com/pub/ASUS/mb/socket775/P5RD1-V/Audio_Linux.zip
It's the driver (with sources) from the mainboard manufacturer (It
didn't work for me though....)
Dirk
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 0x10b9:0x5461 not supported?
2005-07-21 14:36 ` Dirk
@ 2005-07-21 14:49 ` Clemens Ladisch
0 siblings, 0 replies; 11+ messages in thread
From: Clemens Ladisch @ 2005-07-21 14:49 UTC (permalink / raw)
Cc: alsa-devel
Dirk wrote:
> Maybe this does help a little:
> http://dlsvr01.asus.com/pub/ASUS/mb/socket775/P5RD1-V/Audio_Linux.zip
>
> It's the driver (with sources) from the mainboard manufacturer
It tries to access the ALi controller in the same way as the Intel
controller.
It may be possible that the ALi chip was designed to be compatible
with Intel's, but that they got some detail wrong. Or that the driver
gets some detail wrong. There's no way to know without docs
Regards,
Clemens
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2005-07-21 14:49 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-20 13:12 0x10b9:0x5461 not supported? Dirk
2005-07-20 14:08 ` Clemens Ladisch
2005-07-20 18:33 ` Dirk
2005-07-20 18:07 ` Peter Zubaj
2005-07-20 18:33 ` Dirk
2005-07-20 19:42 ` Peter Zubaj
2005-07-21 0:22 ` Dirk
2005-07-21 8:48 ` Clemens Ladisch
2005-07-21 11:20 ` Dirk
2005-07-21 14:36 ` Dirk
2005-07-21 14:49 ` Clemens Ladisch
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.