aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nv50_dac.c
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2012-11-21 00:02:47 -0500
committerBen Skeggs <bskeggs@redhat.com>2012-11-28 18:56:36 -0500
commit9da49599a70eceac405287f34485ed57fe035393 (patch)
tree204a295710952d40ea24e136146a8ccf198aa485 /drivers/gpu/drm/nouveau/nv50_dac.c
parentd432a2db7df5d089bb022d8cbb30f6d6dc785039 (diff)
drm/nouveau: remove newline-only NV_DEBUG calls
This used to output the function name, now doesn't, so just looks stupid. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv50_dac.c')
-rw-r--r--drivers/gpu/drm/nouveau/nv50_dac.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_dac.c b/drivers/gpu/drm/nouveau/nv50_dac.c
index 6a30a1748573..de964e84c74f 100644
--- a/drivers/gpu/drm/nouveau/nv50_dac.c
+++ b/drivers/gpu/drm/nouveau/nv50_dac.c
@@ -279,13 +279,10 @@ static void
279nv50_dac_destroy(struct drm_encoder *encoder) 279nv50_dac_destroy(struct drm_encoder *encoder)
280{ 280{
281 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); 281 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
282 struct nouveau_drm *drm = nouveau_drm(encoder->dev);
283 282
284 if (!encoder) 283 if (!encoder)
285 return; 284 return;
286 285
287 NV_DEBUG(drm, "\n");
288
289 drm_encoder_cleanup(encoder); 286 drm_encoder_cleanup(encoder);
290 kfree(nv_encoder); 287 kfree(nv_encoder);
291} 288}