aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
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