projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
70c7fe1
)
drm/mcde: Rename flow function
author
Linus Walleij
<linus.walleij@linaro.org>
Wed, 29 Jul 2020 09:09:14 +0000
(11:09 +0200)
committer
Linus Walleij
<linus.walleij@linaro.org>
Thu, 13 Aug 2020 14:36:14 +0000
(16:36 +0200)
The function mcde_display_send_one_frame() has a historical
name that stems from being implemented when the driver
only supported single frame updates.
Rename it mcde_start_flow() so that it reflects the current
usage.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Stephan Gerhold <stephan@gerhold.net>
Link:
https://patchwork.freedesktop.org/patch/msgid/20200729090915.252730-1-linus.walleij@linaro.org
drivers/gpu/drm/mcde/mcde_display.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/mcde/mcde_display.c
b/drivers/gpu/drm/mcde/mcde_display.c
index 4d2290f88edb5e74a3efe260de3b3d009f9af898..363fa5ca4b45fddcb6ac381185edea42368bff28 100644
(file)
--- a/
drivers/gpu/drm/mcde/mcde_display.c
+++ b/
drivers/gpu/drm/mcde/mcde_display.c
@@
-968,7
+968,7
@@
static void mcde_display_disable(struct drm_simple_display_pipe *pipe)
dev_info(drm->dev, "MCDE display is disabled\n");
}
-static void mcde_
display_send_one_frame
(struct mcde *mcde)
+static void mcde_
start_flow
(struct mcde *mcde)
{
/* Request a TE ACK */
if (mcde->te_sync)
@@
-1066,7
+1066,7
@@
static void mcde_display_update(struct drm_simple_display_pipe *pipe,
* is not active yet.
*/
if (mcde->flow_active == 0)
- mcde_
display_send_one_frame
(mcde);
+ mcde_
start_flow
(mcde);
}
dev_info_once(mcde->dev, "sent first display update\n");
} else {