aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-05-02 07:58:23 -0400
committerTakashi Iwai <tiwai@suse.de>2011-05-02 07:58:23 -0400
commit20ec8b24636e2d43435a27a55dbb7e8331c563ca (patch)
tree587de6c0d4f84b0420f33f2e590113107ebf4336 /sound
parent90dd48a1a941d0efd413ce011895e3b6edd49b9a (diff)
parent24af2b1cc418d6791b1d9e56bf6070cccb752db3 (diff)
Merge branch 'fix/hda' into topic/hda
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_realtek.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 0f2b52aeb400..c9f77152e079 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -1948,11 +1948,11 @@ static void alc_apply_fixup(struct hda_codec *codec, int action)
1948 codec->chip_name, fix->type); 1948 codec->chip_name, fix->type);
1949 break; 1949 break;
1950 } 1950 }
1951 if (!fix[id].chained) 1951 if (!fix->chained)
1952 break; 1952 break;
1953 if (++depth > 10) 1953 if (++depth > 10)
1954 break; 1954 break;
1955 id = fix[id].chain_id; 1955 id = fix->chain_id;
1956 } 1956 }
1957} 1957}
1958 1958