drm/nouveau/disp: add missing newline in ior debug messages
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
12973a37c4
commit
b5078d731f
|
@ -147,7 +147,7 @@ void gf119_hda_eld(struct nvkm_ior *, u8 *, u8);
|
||||||
|
|
||||||
#define IOR_MSG(i,l,f,a...) do { \
|
#define IOR_MSG(i,l,f,a...) do { \
|
||||||
struct nvkm_ior *_ior = (i); \
|
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)
|
} while(0)
|
||||||
#define IOR_WARN(i,f,a...) IOR_MSG((i), warn, f, ##a)
|
#define IOR_WARN(i,f,a...) IOR_MSG((i), warn, f, ##a)
|
||||||
#define IOR_DBG(i,f,a...) IOR_MSG((i), debug, f, ##a)
|
#define IOR_DBG(i,f,a...) IOR_MSG((i), debug, f, ##a)
|
||||||
|
|
Loading…
Reference in New Issue