Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 170311
b: refs/heads/master
c: fd080b2
h: refs/heads/master
i:
  170309: 64dd617
  170307: d17f4a9
  170303: c560fec
v: v3
  • Loading branch information
Wu Fengguang authored and Takashi Iwai committed Oct 30, 2009
1 parent 4a3036e commit d095f37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 34 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: f424367c3a393ca8b9669ceaa5b7f959d83bb14c
refs/heads/master: fd080b2d8a6a13992b4b1b6300e1befdb9e089f2
36 changes: 3 additions & 33 deletions trunk/sound/pci/hda/patch_intelhdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -841,24 +841,7 @@ static struct hda_codec_ops intel_hdmi_patch_ops = {
.unsol_event = intel_hdmi_unsol_event,
};

static struct intel_hdmi_spec static_specs[] = {
{
.num_cvts = 1,
.num_pins = 1,
.cvt = { 0x2 },
.pin = { 0x3 },
.pin_cvt = { 0x2 },
},
{
.num_cvts = 2,
.num_pins = 3,
.cvt = { 0x2, 0x3 },
.pin = { 0x4, 0x5, 0x6 },
.pin_cvt = { 0x2, 0x2, 0x2 },
},
};

static int do_patch_intel_hdmi(struct hda_codec *codec, int spec_id)
static int patch_intel_hdmi(struct hda_codec *codec)
{
struct intel_hdmi_spec *spec;
int i;
Expand All @@ -873,9 +856,6 @@ static int do_patch_intel_hdmi(struct hda_codec *codec, int spec_id)
kfree(spec);
return -EINVAL;
}
if (memcmp(spec, static_specs + spec_id, sizeof(*spec)))
snd_printk(KERN_WARNING
"HDMI: auto parse disagree with known config\n");
codec->patch_ops = intel_hdmi_patch_ops;

for (i = 0; i < spec->num_pins; i++)
Expand All @@ -886,23 +866,13 @@ static int do_patch_intel_hdmi(struct hda_codec *codec, int spec_id)
return 0;
}

static int patch_intel_hdmi(struct hda_codec *codec)
{
return do_patch_intel_hdmi(codec, 0);
}

static int patch_intel_hdmi_ibexpeak(struct hda_codec *codec)
{
return do_patch_intel_hdmi(codec, 1);
}

static struct hda_codec_preset snd_hda_preset_intelhdmi[] = {
{ .id = 0x808629fb, .name = "G45 DEVCL", .patch = patch_intel_hdmi },
{ .id = 0x80862801, .name = "G45 DEVBLC", .patch = patch_intel_hdmi },
{ .id = 0x80862802, .name = "G45 DEVCTG", .patch = patch_intel_hdmi },
{ .id = 0x80862803, .name = "G45 DEVELK", .patch = patch_intel_hdmi },
{ .id = 0x80862804, .name = "G45 DEVIBX", .patch = patch_intel_hdmi_ibexpeak },
{ .id = 0x80860054, .name = "Q57 DEVIBX", .patch = patch_intel_hdmi_ibexpeak },
{ .id = 0x80862804, .name = "G45 DEVIBX", .patch = patch_intel_hdmi },
{ .id = 0x80860054, .name = "Q57 DEVIBX", .patch = patch_intel_hdmi },
{ .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_intel_hdmi },
{} /* terminator */
};
Expand Down

0 comments on commit d095f37

Please sign in to comment.