Commit 8ff490ae authored by John Keeping's avatar John Keeping Committed by Mark Yao

drm/rockchip: fix "should it be static?" warnings

Combined with the previous commit, this fixes all of the sparse warnings
in drm/rockchip.
Signed-off-by: default avatarJohn Keeping <john@metanate.com>
parent a7e03fb5
...@@ -257,7 +257,7 @@ static void rockchip_drm_unbind(struct device *dev) ...@@ -257,7 +257,7 @@ static void rockchip_drm_unbind(struct device *dev)
dev_set_drvdata(dev, NULL); dev_set_drvdata(dev, NULL);
} }
void rockchip_drm_lastclose(struct drm_device *dev) static void rockchip_drm_lastclose(struct drm_device *dev)
{ {
struct rockchip_drm_private *priv = dev->dev_private; struct rockchip_drm_private *priv = dev->dev_private;
......
...@@ -246,7 +246,7 @@ rockchip_atomic_commit_tail(struct drm_atomic_state *state) ...@@ -246,7 +246,7 @@ rockchip_atomic_commit_tail(struct drm_atomic_state *state)
drm_atomic_helper_cleanup_planes(dev, state); drm_atomic_helper_cleanup_planes(dev, state);
} }
struct drm_mode_config_helper_funcs rockchip_mode_config_helpers = { static struct drm_mode_config_helper_funcs rockchip_mode_config_helpers = {
.atomic_commit_tail = rockchip_atomic_commit_tail, .atomic_commit_tail = rockchip_atomic_commit_tail,
}; };
......
...@@ -798,7 +798,7 @@ static const struct drm_plane_helper_funcs plane_helper_funcs = { ...@@ -798,7 +798,7 @@ static const struct drm_plane_helper_funcs plane_helper_funcs = {
.atomic_disable = vop_plane_atomic_disable, .atomic_disable = vop_plane_atomic_disable,
}; };
void vop_atomic_plane_reset(struct drm_plane *plane) static void vop_atomic_plane_reset(struct drm_plane *plane)
{ {
struct vop_plane_state *vop_plane_state = struct vop_plane_state *vop_plane_state =
to_vop_plane_state(plane->state); to_vop_plane_state(plane->state);
...@@ -815,7 +815,7 @@ void vop_atomic_plane_reset(struct drm_plane *plane) ...@@ -815,7 +815,7 @@ void vop_atomic_plane_reset(struct drm_plane *plane)
plane->state->plane = plane; plane->state->plane = plane;
} }
struct drm_plane_state * static struct drm_plane_state *
vop_atomic_plane_duplicate_state(struct drm_plane *plane) vop_atomic_plane_duplicate_state(struct drm_plane *plane)
{ {
struct vop_plane_state *old_vop_plane_state; struct vop_plane_state *old_vop_plane_state;
......
...@@ -299,7 +299,7 @@ static int vop_remove(struct platform_device *pdev) ...@@ -299,7 +299,7 @@ static int vop_remove(struct platform_device *pdev)
return 0; return 0;
} }
struct platform_driver vop_platform_driver = { static struct platform_driver vop_platform_driver = {
.probe = vop_probe, .probe = vop_probe,
.remove = vop_remove, .remove = vop_remove,
.driver = { .driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment