]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
UBUNTU: SAUCE: nouveau: missing outputs should be warnings
authorAndy Whitcroft <apw@canonical.com>
Mon, 31 Mar 2014 15:57:11 +0000 (16:57 +0100)
committerSeth Forshee <seth.forshee@canonical.com>
Tue, 5 Sep 2017 12:33:06 +0000 (07:33 -0500)
We emit a number of messages on outputs which are not connected, when
these are not fatal.  These are more appropriatly warnings.

BugLink: http://bugs.launchpad.net/bugs/1300244
Signed-off-by: Andy Whitcroft <apw@canonical.com>
drivers/gpu/drm/nouveau/nouveau_bios.c

index b998c33af18a0610a5cacbab72453df2a9de6ee9..622544e2b1dd2a629890bb6ac0c184aba4cf7aef 100644 (file)
@@ -354,7 +354,7 @@ static int parse_fp_mode_table(struct drm_device *dev, struct nvbios *bios)
                /* 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");
+               NV_WARN(drm, "Pointer to flat panel table invalid\n");
 #endif
                bios->digital_min_front_porch = 0x4b;
                return 0;
@@ -938,7 +938,7 @@ static int parse_bit_tmds_tbl_entry(struct drm_device *dev, struct nvbios *bios,
 
        tmdstableptr = ROM16(bios->data[bitentry->offset]);
        if (!tmdstableptr) {
-               NV_ERROR(drm, "Pointer to TMDS table invalid\n");
+               NV_WARN(drm, "Pointer to TMDS table invalid\n");
                return -EINVAL;
        }