Commit 98720bf4 authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau: remove warning about unknown tmds table revisions

This message is apparently confusing people, and is being blamed for some
modesetting issues.  Lets remove the message, and instead replace it
with an unconditional printout of the table revision.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent bd6aaea8
...@@ -5357,19 +5357,17 @@ static int parse_bit_tmds_tbl_entry(struct drm_device *dev, struct nvbios *bios, ...@@ -5357,19 +5357,17 @@ static int parse_bit_tmds_tbl_entry(struct drm_device *dev, struct nvbios *bios,
} }
tmdstableptr = ROM16(bios->data[bitentry->offset]); tmdstableptr = ROM16(bios->data[bitentry->offset]);
if (!tmdstableptr) {
if (tmdstableptr == 0x0) {
NV_ERROR(dev, "Pointer to TMDS table invalid\n"); NV_ERROR(dev, "Pointer to TMDS table invalid\n");
return -EINVAL; return -EINVAL;
} }
NV_INFO(dev, "TMDS table version %d.%d\n",
bios->data[tmdstableptr] >> 4, bios->data[tmdstableptr] & 0xf);
/* nv50+ has v2.0, but we don't parse it atm */ /* nv50+ has v2.0, but we don't parse it atm */
if (bios->data[tmdstableptr] != 0x11) { if (bios->data[tmdstableptr] != 0x11)
NV_WARN(dev,
"TMDS table revision %d.%d not currently supported\n",
bios->data[tmdstableptr] >> 4, bios->data[tmdstableptr] & 0xf);
return -ENOSYS; return -ENOSYS;
}
/* /*
* These two scripts are odd: they don't seem to get run even when * These two scripts are odd: they don't seem to get run even when
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment