projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
12973a3
)
drm/nouveau/disp: add missing newline in ior debug messages
author
Ben Skeggs
<bskeggs@redhat.com>
Tue, 31 Oct 2017 17:56:19 +0000
(
03:56
+1000)
committer
Ben Skeggs
<bskeggs@redhat.com>
Thu, 2 Nov 2017 03:32:17 +0000
(13:32 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
b/drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
index a1e8bf48b778430d45d46fb9e9de453fb897cd2a..c9e0a8f7b5d5cbcb5ae936fcf649d00f4c213710 100644
(file)
--- a/
drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
+++ b/
drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
@@
-147,7
+147,7
@@
void gf119_hda_eld(struct nvkm_ior *, u8 *, u8);
#define IOR_MSG(i,l,f,a...) do { \
struct nvkm_ior *_ior = (i); \
- nvkm_##l(&_ior->disp->engine.subdev, "%s: "f
, _ior->name, ##a);
\
+ nvkm_##l(&_ior->disp->engine.subdev, "%s: "f
"\n", _ior->name, ##a);
\
} while(0)
#define IOR_WARN(i,f,a...) IOR_MSG((i), warn, f, ##a)
#define IOR_DBG(i,f,a...) IOR_MSG((i), debug, f, ##a)