aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasanari Iida <[email protected]>2015-07-15 19:25:42 +0900
committerDaniel Vetter <[email protected]>2015-07-15 14:19:04 +0200
commitec081cb337a1edc793d7aa53baa9b8afa096678d (patch)
tree7e1dc038d726826101a962db4d23ef4cff960b0d
parent131e663bd6f1055caaff128f9aa5071d227eeb72 (diff)
drm: Fix warning with make xmldocs caused by drm_irq.c
This patch fix following warnings. Warning(.//drivers/gpu/drm/drm_irq.c:1279): No description found for parameter drm_crtc' Warning(.//drivers/gpu/drm/drm_irq.c:1279): Excess function parameter 'crtc' description in 'drm_crtc_vblank_reset' Signed-off-by: Masanari Iida <[email protected]> Signed-off-by: Daniel Vetter <[email protected]>
-rw-r--r--drivers/gpu/drm/drm_irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c
index f9cc68fbd2a3..9fd784b8966b 100644
--- a/drivers/gpu/drm/drm_irq.c
+++ b/drivers/gpu/drm/drm_irq.c
@@ -1267,7 +1267,7 @@ EXPORT_SYMBOL(drm_crtc_vblank_off);
/**
* drm_crtc_vblank_reset - reset vblank state to off on a CRTC
- * @crtc: CRTC in question
+ * @drm_crtc: CRTC in question
*
* Drivers can use this function to reset the vblank state to off at load time.
* Drivers should use this together with the drm_crtc_vblank_off() and