diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2018-01-29 12:55:31 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-02-07 11:06:37 +0300 |
commit | 312924d3bc60fda4cb79d70a5c1c5b2b02aaa274 (patch) | |
tree | 4ae5ebb788b2eedc37cdd3cca78f962ebd6c167a /include/drm/drm_bridge.h | |
parent | 4beb3b40ae7f994af01200323441df13f8f5b241 (diff) | |
download | linux-312924d3bc60fda4cb79d70a5c1c5b2b02aaa274.tar.xz |
drm/bridge: Rename argument from crtc to bridge
Why is the argument to ->mode_valid() called "crtc"?
I guess a copy/paste error. Fix it.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20180129095531.4557-1-linus.walleij@linaro.org
Diffstat (limited to 'include/drm/drm_bridge.h')
-rw-r--r-- | include/drm/drm_bridge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_bridge.h b/include/drm/drm_bridge.h index bb7b97dfb93e..3270fec46979 100644 --- a/include/drm/drm_bridge.h +++ b/include/drm/drm_bridge.h @@ -91,7 +91,7 @@ struct drm_bridge_funcs { * * drm_mode_status Enum */ - enum drm_mode_status (*mode_valid)(struct drm_bridge *crtc, + enum drm_mode_status (*mode_valid)(struct drm_bridge *bridge, const struct drm_display_mode *mode); /** |