All of lore.kernel.org
 help / color / mirror / Atom feed
From: Doug McLain <doug@nostar.net>
To: Jaroslav Kysela <perex@suse.cz>, Alsa-devel@lists.sourceforge.net
Subject: patch for bug 1806
Date: Fri, 24 Feb 2006 18:49:40 -0500	[thread overview]
Message-ID: <43FF9B94.6050909@nostar.net> (raw)

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

Jaroslav,

I posted this patch to bug 1806 a while back, and have been awaiting a 
reply or commit.  It currently reports the Locked/No Signal text 
backwards in envy24control, since i was using an older version of 
envy24control when I wrote the original code.  The Locked/No Signal test 
was recently reversed in envy24control cvs, so the test in my code needs 
to be reversed as well.  Here is the patch, once again.

Doug
--
http://nostar.net/

[-- Attachment #2: 1010lt_wordclock_status_correction.diff --]
[-- Type: text/x-patch, Size: 664 bytes --]

? 1010lt_wordclock_status_correction.diff
Index: pci/ice1712/delta.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/ice1712/delta.c,v
retrieving revision 1.25
diff -u -r1.25 delta.c
--- pci/ice1712/delta.c	10 Feb 2006 08:42:17 -0000	1.25
+++ pci/ice1712/delta.c	10 Feb 2006 21:30:27 -0000
@@ -412,7 +412,7 @@
 	if (snd_i2c_sendbytes(ice->cs8427, &reg, 1) != 1)
 		snd_printk(KERN_ERR "unable to send register 0x%x byte to CS8427\n", reg);
 	snd_i2c_readbytes(ice->cs8427, &reg, 1);
-	ucontrol->value.integer.value[0] = (reg ? 0 : 1);
+	ucontrol->value.integer.value[0] = (reg ? 1 : 0);
 	return 0;
 }
 

             reply	other threads:[~2006-02-24 23:49 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-02-24 23:49 Doug McLain [this message]
2006-02-28 11:53 ` patch for bug 1806 Takashi Iwai

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=43FF9B94.6050909@nostar.net \
    --to=doug@nostar.net \
    --cc=Alsa-devel@lists.sourceforge.net \
    --cc=perex@suse.cz \
    /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.