Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=38fcaf8efcac6f89dd3dafa3df17f49fcf3403ba
Commit:     38fcaf8efcac6f89dd3dafa3df17f49fcf3403ba
Parent:     5a7f261921cf482e17bb9d6641bef8f9c57b7409
Author:     Andrew Paprocki <[EMAIL PROTECTED]>
AuthorDate: Mon Dec 17 11:49:44 2007 +0100
Committer:  Jaroslav Kysela <[EMAIL PROTECTED]>
CommitDate: Thu Jan 31 17:29:36 2008 +0100

    [ALSA] hda-codec - Fix definition of AC_KNBCAP_DELTA to match spec
    
    AC_KNBCAP_DELTA is incorrectly defined as (1<<8). According to the Intel
    HDA spec, this is bit 7 after AC_KNBCAP_NUM_STEPS which is a 0x7f mask.
    
    Signed-off-by: Andrew Paprocki <[EMAIL PROTECTED]>
    Signed-off-by: Takashi Iwai <[EMAIL PROTECTED]>
    Signed-off-by: Jaroslav Kysela <[EMAIL PROTECTED]>
---
 sound/pci/hda/hda_codec.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h
index 0331510..851abfe 100644
--- a/sound/pci/hda/hda_codec.h
+++ b/sound/pci/hda/hda_codec.h
@@ -234,7 +234,7 @@ enum {
 
 /* Volume knobs capabilities */
 #define AC_KNBCAP_NUM_STEPS            (0x7f<<0)
-#define AC_KNBCAP_DELTA                        (1<<8)
+#define AC_KNBCAP_DELTA                        (1<<7)
 
 /*
  * Control Parameters
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to