diff options
author | Lespiau, Damien <damien.lespiau@intel.com> | 2013-09-23 14:48:09 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-10-09 15:55:29 +1000 |
commit | 1eee814dfd509e7fdb28361303c9b0ac927ff4c1 (patch) | |
tree | 7bb27a1695a77d633f6812932d585ea4b5139caa /drivers/gpu/drm/drm_crtc_helper.c | |
parent | 9066f83c055edd0e42b0ecb57a27b308bde64687 (diff) | |
download | talos-obmc-linux-1eee814dfd509e7fdb28361303c9b0ac927ff4c1.tar.gz talos-obmc-linux-1eee814dfd509e7fdb28361303c9b0ac927ff4c1.zip |
drm: Fix comment referring to the long gone ->probe() connector vfunc
drm_helper_probe_single_connector_modes() can be used to implement
->fill_modes(), not ->probe().
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc_helper.c')
-rw-r--r-- | drivers/gpu/drm/drm_crtc_helper.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c index c722c3b5404d..c2a525dcf0d4 100644 --- a/drivers/gpu/drm/drm_crtc_helper.c +++ b/drivers/gpu/drm/drm_crtc_helper.c @@ -105,9 +105,9 @@ static void drm_mode_validate_flag(struct drm_connector *connector, * then culled (based on validity and the @maxX, @maxY parameters) and put into * the normal modes list. * - * Intended to be use as a generic implementation of the ->probe() @connector - * callback for drivers that use the crtc helpers for output mode filtering and - * detection. + * Intended to be use as a generic implementation of the ->fill_modes() + * @connector vfunc for drivers that use the crtc helpers for output mode + * filtering and detection. * * RETURNS: * Number of modes found on @connector. |