diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-03-14 08:59:28 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2023-01-06 06:27:45 +0100 |
commit | 8173dabd7e63aae9e0ef6fb27324e19fc092244b (patch) | |
tree | ca0d02d553fd81fd92a4ecc0d2ac72291e291510 /drivers/video/fbdev/aty/radeon_i2c.c | |
parent | 76dcd734eca23168cb008912c0f69ff408905235 (diff) | |
download | linux-radeonfb-logging.tar.gz |
[debug] log monitor probingradeonfb-logging
Diffstat (limited to 'drivers/video/fbdev/aty/radeon_i2c.c')
-rw-r--r-- | drivers/video/fbdev/aty/radeon_i2c.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/fbdev/aty/radeon_i2c.c b/drivers/video/fbdev/aty/radeon_i2c.c index 269b12ebb673..97209ca61838 100644 --- a/drivers/video/fbdev/aty/radeon_i2c.c +++ b/drivers/video/fbdev/aty/radeon_i2c.c @@ -148,21 +148,21 @@ int radeon_probe_i2c_connector(struct radeonfb_info *rinfo, int conn, if (out_edid) *out_edid = edid; if (!edid) { - pr_debug("radeonfb: I2C (port %d) ... not found\n", conn); + pr_info("radeonfb: I2C (port %d) ... not found\n", conn); return MT_NONE; } if (edid[0x14] & 0x80) { /* Fix detection using BIOS tables */ if (rinfo->is_mobility /*&& conn == ddc_dvi*/ && (INREG(LVDS_GEN_CNTL) & LVDS_ON)) { - pr_debug("radeonfb: I2C (port %d) ... found LVDS panel\n", conn); + pr_info("radeonfb: I2C (port %d) ... found LVDS panel\n", conn); return MT_LCD; } else { - pr_debug("radeonfb: I2C (port %d) ... found TMDS panel\n", conn); + pr_info("radeonfb: I2C (port %d) ... found TMDS panel\n", conn); return MT_DFP; } } - pr_debug("radeonfb: I2C (port %d) ... found CRT display\n", conn); + pr_info("radeonfb: I2C (port %d) ... found CRT display\n", conn); return MT_CRT; } |