From: Dean Hamstead <dean@bong.com.au>
To: "debian-powerpc@lists.debian.org" <debian-powerpc@lists.debian.org>
Cc: linuxppc-dev list <linuxppc-dev@ozlabs.org>
Subject: Re: [PATCH] Fix Alsa issues including Oopses with OSS emulation
Date: Thu, 23 Dec 2004 11:15:09 +1100 [thread overview]
Message-ID: <41CA0E0D.908@bong.com.au> (raw)
In-Reply-To: <Pine.LNX.4.21.0412230130510.5692-100000@hal.pp.fishpool.fi>
the pmac driver has issues on my imac dv, it works but alas
it doesnt know what to do when plugging in headphones
not to mention lack of input sensors for my ibook (clamshell)
i realise though that if you cant get specs and no one
wants to tinker around stuff wont get implemented.
but if its in OSS...
*shrug*
ben (and others) do a great job though.
Dean
Martin-Éric Racine wrote:
> Nice to know that work is being done on the pmac ALSA driver. :)
>
> However, I still cannot get ALSA to work at all on this iMac's Burgundy:
> https://bugtrack.alsa-project.org/alsa-bug/view.php?id=306
>
> The old OSS driver still works, so I know that the hardware is not at
> fault; this is clearly an ALSA driver problem.
>
> Has anybody managed to get this to work on similar hardware?
>
>
> On Wed, 22 Dec 2004, Benjamin Herrenschmidt wrote:
>
>
>>This patch (which will be send upstream separately by the Alsa folks) fixes
>>an signed vs. unsigned char problem in Alsa which was the cause of the Oops
>>people were experiencing on ppc with OSS emulation and possibly other issues.
>>
>>Index: linux-work/sound/core/pcm_misc.c
>>===================================================================
>>--- linux-work.orig/sound/core/pcm_misc.c 2004-11-22 01:51:09.000000000 +0100
>>+++ linux-work/sound/core/pcm_misc.c 2004-12-22 19:11:26.297518336 +0100
>>@@ -26,10 +26,10 @@
>> #define SND_PCM_FORMAT_UNKNOWN (-1)
>>
>> struct pcm_format_data {
>>- char width; /* bit width */
>>- char phys; /* physical bit width */
>>- char le; /* 0 = big-endian, 1 = little-endian, -1 = others */
>>- char signd; /* 0 = unsigned, 1 = signed, -1 = others */
>>+ signed char width; /* bit width */
>>+ signed char phys; /* physical bit width */
>>+ signed char le; /* 0 = big-endian, 1 = little-endian, -1 = others */
>>+ signed char signd; /* 0 = unsigned, 1 = signed, -1 = others */
>> unsigned char silence[8]; /* silence data to fill */
>> };
>>
>>
>>
>>
>>
>
>
next prev parent reply other threads:[~2004-12-23 0:21 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-12-22 18:13 [PATCH] Fix Alsa issues including Oopses with OSS emulation Benjamin Herrenschmidt
2004-12-22 18:35 ` Benjamin Herrenschmidt
2004-12-23 6:25 ` Sven Luther
2004-12-23 6:55 ` Benjamin Herrenschmidt
2004-12-23 11:36 ` Sven Luther
2004-12-26 12:05 ` Sven Luther
2004-12-22 23:36 ` Martin-Éric Racine
2004-12-23 0:15 ` Dean Hamstead [this message]
2004-12-23 8:00 ` Benjamin Herrenschmidt
2004-12-23 12:25 ` Dean Hamstead
2004-12-23 14:03 ` Benjamin Herrenschmidt
2004-12-23 6:54 ` Benjamin Herrenschmidt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=41CA0E0D.908@bong.com.au \
--to=dean@bong.com.au \
--cc=debian-powerpc@lists.debian.org \
--cc=linuxppc-dev@ozlabs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.