From: Alexandre Courbot Date: Wed, 2 Mar 2016 10:13:03 +0000 (+0900) Subject: drm/nouveau: silence unimportant HDMI status message X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=f2a0adadeb53f6df93362cb18f797912224932c4;p=openwrt%2Fstaging%2Fblogic.git drm/nouveau: silence unimportant HDMI status message On non-PCI devices, nobody should really care if the device does not provide HDMI... Signed-off-by: Alexandre Courbot Signed-off-by: Ben Skeggs --- diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c index bb8498c9b13e..30b59586a651 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drm.c +++ b/drivers/gpu/drm/nouveau/nouveau_drm.c @@ -375,7 +375,7 @@ nouveau_get_hdmi_dev(struct nouveau_drm *drm) struct pci_dev *pdev = drm->dev->pdev; if (!pdev) { - DRM_INFO("not a PCI device; no HDMI\n"); + NV_DEBUG(drm, "not a PCI device; no HDMI\n"); drm->hdmi_device = NULL; return; }