diff options
author | Alexandre Courbot <acourbot@nvidia.com> | 2014-03-24 04:42:23 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2014-03-26 00:08:26 -0400 |
commit | 40189b0c6551359a9268c8d6f730914b28623817 (patch) | |
tree | e68024481e91a97b74f8eca742429335bd020fc2 | |
parent | 18acc6d84eba960804f38a21842c02f3981c1c18 (diff) |
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>
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_drm.c | 2 |
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) | |||
322 | struct pci_dev *pdev = drm->dev->pdev; | 322 | struct pci_dev *pdev = drm->dev->pdev; |
323 | 323 | ||
324 | if (!pdev) { | 324 | if (!pdev) { |
325 | DRM_INFO("not a PCI device; no HDMI"); | 325 | DRM_INFO("not a PCI device; no HDMI\n"); |
326 | drm->hdmi_device = NULL; | 326 | drm->hdmi_device = NULL; |
327 | return; | 327 | return; |
328 | } | 328 | } |