projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5954d3a
)
drm/udl: removed optional dummy encoder mode_fixup function.
author
Carlos Palminha
<
[email protected]
>
Mon, 15 Feb 2016 12:57:58 +0000
(12:57 +0000)
committer
Daniel Vetter
<
[email protected]
>
Tue, 16 Feb 2016 14:30:12 +0000
(15:30 +0100)
mode_fixup function for encoder drivers became optional with patch
http://patchwork.freedesktop.org/patch/msgid/
1455106522
[email protected]
This patch set nukes all the dummy mode_fixup implementations.
(made on top of Daniel topic/drm-misc branch)
Signed-off-by: Carlos Palminha <
[email protected]
>
Signed-off-by: Daniel Vetter <
[email protected]
>
Link:
http://patchwork.freedesktop.org/patch/msgid/a7ebfb6c6c333056d0a77d2684c539107ee63589.1455540137.git.palminha@synopsys.com
drivers/gpu/drm/udl/udl_encoder.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/udl/udl_encoder.c
b/drivers/gpu/drm/udl/udl_encoder.c
index a181a647fcf94b5511acc2a17ef8741f7c465d25..59a4b34e87ed0796c7f9f060da4a9fec0796d86f 100644
(file)
--- a/
drivers/gpu/drm/udl/udl_encoder.c
+++ b/
drivers/gpu/drm/udl/udl_encoder.c
@@
-26,13
+26,6
@@
static void udl_encoder_disable(struct drm_encoder *encoder)
{
}
-static bool udl_mode_fixup(struct drm_encoder *encoder,
- const struct drm_display_mode *mode,
- struct drm_display_mode *adjusted_mode)
-{
- return true;
-}
-
static void udl_encoder_prepare(struct drm_encoder *encoder)
{
}
@@
-54,7
+47,6
@@
udl_encoder_dpms(struct drm_encoder *encoder, int mode)
static const struct drm_encoder_helper_funcs udl_helper_funcs = {
.dpms = udl_encoder_dpms,
- .mode_fixup = udl_mode_fixup,
.prepare = udl_encoder_prepare,
.mode_set = udl_encoder_mode_set,
.commit = udl_encoder_commit,