From: Alexandre Courbot Date: Mon, 24 Mar 2014 08:42:23 +0000 (+0900) Subject: drm/nouveau: fix missing newline X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=40189b0c6551359a9268c8d6f730914b28623817;p=linux-beck.git drm/nouveau: fix missing newline Add a missing newline at the end of a DRM_INFO message. Signed-off-by: Alexandre Courbot Reviewed-by: Thierry Reding Signed-off-by: Ben Skeggs --- diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c index 8f811a5f16e2..61ab94799660 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drm.c +++ b/drivers/gpu/drm/nouveau/nouveau_drm.c @@ -322,7 +322,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"); + DRM_INFO("not a PCI device; no HDMI\n"); drm->hdmi_device = NULL; return; }