Rosen Penev
2017-Jul-25 21:08 UTC
[Nouveau] [PATCH] bios: Demote missing fp table message to NV_DEBUG.
This warning seems to pop up 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 laptops use DDC */
- /* The table is also missing on some x86 IGPs */
-#ifndef __powerpc__
- NV_ERROR(drm, "Pointer to flat panel table invalid\n");
-#endif
+ /* Most laptop cards lack an fp table. They use DDC. */
+ NV_DEBUG(drm, "Pointer to flat panel table invalid\n");
bios->digital_min_front_porch = 0x4b;
return 0;
}
--
2.13.3
Possibly Parallel Threads
- [PATCH] bios: Restrict missing fp table message to desktop cards.
- [PATCH] bios: add 8.1Gbps DP link rate
- [PATCH v2] drm/nouveau: use nv_debug for NV_DEBUG, make DRM a separate subflag
- [PATCH] drm/nouveau: NV_DEBUG and NV_ATOMIC should call __drm_debug_enabled
- [PATCH] add with-openssl option
