Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 148422
b: refs/heads/master
c: 6c627f3
h: refs/heads/master
v: v3
  • Loading branch information
Takashi Iwai committed May 18, 2009
1 parent 1b8e87b commit f30f81a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 21 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 812a2cca295ee7f56cd1b988a0f93646285c214a
refs/heads/master: 6c627f3978bf3059d45713e2e1240b7c43cc85f5
42 changes: 22 additions & 20 deletions trunk/sound/pci/hda/patch_realtek.c
Original file line number Diff line number Diff line change
Expand Up @@ -4410,8 +4410,8 @@ static int patch_alc880(struct hda_codec *codec)
alc880_models,
alc880_cfg_tbl);
if (board_config < 0) {
printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
"trying auto-probe from BIOS...\n");
printk(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n", codec->chip_name);
board_config = ALC880_AUTO;
}

Expand Down Expand Up @@ -6054,8 +6054,9 @@ static int patch_alc260(struct hda_codec *codec)
alc260_models,
alc260_cfg_tbl);
if (board_config < 0) {
snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
"trying auto-probe from BIOS...\n");
snd_printd(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n",
codec->chip_name);
board_config = ALC260_AUTO;
}

Expand Down Expand Up @@ -7308,8 +7309,9 @@ static int patch_alc882(struct hda_codec *codec)
alc_free(codec);
return patch_alc883(codec);
}
printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
"trying auto-probe from BIOS...\n");
printk(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n",
codec->chip_name);
board_config = ALC882_AUTO;
}
}
Expand Down Expand Up @@ -9196,8 +9198,8 @@ static int patch_alc883(struct hda_codec *codec)
alc883_models,
alc883_cfg_tbl);
if (board_config < 0) {
printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
"trying auto-probe from BIOS...\n");
printk(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n", codec->chip_name);
board_config = ALC883_AUTO;
}

Expand Down Expand Up @@ -11040,8 +11042,8 @@ static int patch_alc262(struct hda_codec *codec)
alc262_cfg_tbl);

if (board_config < 0) {
printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
"trying auto-probe from BIOS...\n");
printk(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n", codec->chip_name);
board_config = ALC262_AUTO;
}

Expand Down Expand Up @@ -12076,8 +12078,8 @@ static int patch_alc268(struct hda_codec *codec)
alc268_cfg_tbl);

if (board_config < 0 || board_config >= ALC268_MODEL_LAST) {
printk(KERN_INFO "hda_codec: Unknown model for ALC268, "
"trying auto-probe from BIOS...\n");
printk(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n", codec->chip_name);
board_config = ALC268_AUTO;
}

Expand Down Expand Up @@ -12924,8 +12926,8 @@ static int patch_alc269(struct hda_codec *codec)
alc269_cfg_tbl);

if (board_config < 0) {
printk(KERN_INFO "hda_codec: Unknown model for ALC269, "
"trying auto-probe from BIOS...\n");
printk(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n", codec->chip_name);
board_config = ALC269_AUTO;
}

Expand Down Expand Up @@ -14023,8 +14025,8 @@ static int patch_alc861(struct hda_codec *codec)
alc861_cfg_tbl);

if (board_config < 0) {
printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
"trying auto-probe from BIOS...\n");
printk(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n", codec->chip_name);
board_config = ALC861_AUTO;
}

Expand Down Expand Up @@ -14947,8 +14949,8 @@ static int patch_alc861vd(struct hda_codec *codec)
alc861vd_cfg_tbl);

if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
"ALC861VD, trying auto-probe from BIOS...\n");
printk(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n", codec->chip_name);
board_config = ALC861VD_AUTO;
}

Expand Down Expand Up @@ -16872,8 +16874,8 @@ static int patch_alc662(struct hda_codec *codec)
alc662_models,
alc662_cfg_tbl);
if (board_config < 0) {
printk(KERN_INFO "hda_codec: Unknown model for ALC662, "
"trying auto-probe from BIOS...\n");
printk(KERN_INFO "hda_codec: Unknown model for %s, "
"trying auto-probe from BIOS...\n", codec->chip_name);
board_config = ALC662_AUTO;
}

Expand Down

0 comments on commit f30f81a

Please sign in to comment.