aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau
diff options
context:
space:
mode:
authorAlexandre Courbot <acourbot@nvidia.com>2014-03-24 17:42:23 +0900
committerBen Skeggs <bskeggs@redhat.com>2014-03-26 14:08:26 +1000
commit40189b0c6551359a9268c8d6f730914b28623817 (patch)
treee68024481e91a97b74f8eca742429335bd020fc2 /drivers/gpu/drm/nouveau
parentdrm/nouveau/bios: fetch the vbios from PROM using only aligned 32-bit accesses (diff)
downloadlinux-dev-40189b0c6551359a9268c8d6f730914b28623817.tar.xz
linux-dev-40189b0c6551359a9268c8d6f730914b28623817.zip
drm/nouveau: fix missing newline
Add a missing newline at the end of a DRM_INFO message. Signed-off-by: Alexandre Courbot <acourbot@nvidia.com> Reviewed-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_drm.c2
1 files changed, 1 insertions, 1 deletions
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;
}