Displaying 2 results from an estimated 2 matches for "dd6fba55".
Did you mean:
dd1fb55
2017 Jul 25
0
[PATCH] bios: Demote missing fp table message to NV_DEBUG.
...p mainly in laptop cards. Silence it as
it is expected behavior.
Signed-off by: Rosen Penev <rosenp at gmail.com>
---
drm/nouveau/nouveau_bios.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/drm/nouveau/nouveau_bios.c b/drm/nouveau/nouveau_bios.c
index b998c33a..dd6fba55 100644
--- a/drm/nouveau/nouveau_bios.c
+++ b/drm/nouveau/nouveau_bios.c
@@ -351,11 +351,8 @@ static int parse_fp_mode_table(struct drm_device *dev, struct nvbios *bios)
struct lvdstableheader lth;
if (bios->fp.fptablepointer == 0x0) {
- /* Apple cards don't have the fp table; the lap...
2017 Oct 21
0
[PATCH] bios: add 8.1Gbps DP link rate
...rely untested. Why do we have two DCB parsers again? Also the other one
sets link_bw to a totally different set of units for link_bw...
drm/nouveau/nouveau_bios.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drm/nouveau/nouveau_bios.c b/drm/nouveau/nouveau_bios.c
index dd6fba55..c4ef3a0a 100644
--- a/drm/nouveau/nouveau_bios.c
+++ b/drm/nouveau/nouveau_bios.c
@@ -1478,9 +1478,13 @@ parse_dcb20_entry(struct drm_device *dev, struct dcb_table *dcb,
case 1:
entry->dpconf.link_bw = 270000;
break;
- default:
+ case 2:
entry->dpconf.link_bw = 540000;
b...