diff options
author | Masanari Iida <standby24x7@gmail.com> | 2014-10-22 20:06:28 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-10-23 04:12:18 -0400 |
commit | 5a1cbdb0fb6748a52a33f4ccd5d49486d7479fbb (patch) | |
tree | f4ec40be43ea2a92ce30ba2427d0d7b5abbb1e96 /drivers/gpu/drm/drm_crtc.c | |
parent | e45708976aea3a3c3aa959e3cc2b703fefbd758a (diff) |
gpu: drm: Fix warning caused by a parameter description in drm_crtc.c
This patch fix following error while "make xmldocs"
Warning(.//drivers/gpu/drm/drm_crtc.c:778): Excess function parameter
'mode' description in 'drm_connector_get_cmdline_mode'
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc.c')
-rw-r--r-- | drivers/gpu/drm/drm_crtc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index b4a6f08d0045..4081d7ab8407 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c | |||
@@ -766,7 +766,6 @@ static void drm_mode_remove(struct drm_connector *connector, | |||
766 | /** | 766 | /** |
767 | * drm_connector_get_cmdline_mode - reads the user's cmdline mode | 767 | * drm_connector_get_cmdline_mode - reads the user's cmdline mode |
768 | * @connector: connector to quwery | 768 | * @connector: connector to quwery |
769 | * @mode: returned mode | ||
770 | * | 769 | * |
771 | * The kernel supports per-connector configration of its consoles through | 770 | * The kernel supports per-connector configration of its consoles through |
772 | * use of the video= parameter. This function parses that option and | 771 | * use of the video= parameter. This function parses that option and |