mirror of https://gitee.com/openkylin/linux.git
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: John Keeping <john@metanate.com>
This commit is contained in:
parent
a7e03fb537
commit
8ff490ae42
|
@ -257,7 +257,7 @@ static void rockchip_drm_unbind(struct device *dev)
|
|||
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;
|
||||
|
||||
|
|
|
@ -246,7 +246,7 @@ rockchip_atomic_commit_tail(struct drm_atomic_state *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,
|
||||
};
|
||||
|
||||
|
|
|
@ -798,7 +798,7 @@ static const struct drm_plane_helper_funcs plane_helper_funcs = {
|
|||
.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 =
|
||||
to_vop_plane_state(plane->state);
|
||||
|
@ -815,7 +815,7 @@ void vop_atomic_plane_reset(struct drm_plane *plane)
|
|||
plane->state->plane = plane;
|
||||
}
|
||||
|
||||
struct drm_plane_state *
|
||||
static struct drm_plane_state *
|
||||
vop_atomic_plane_duplicate_state(struct drm_plane *plane)
|
||||
{
|
||||
struct vop_plane_state *old_vop_plane_state;
|
||||
|
|
|
@ -299,7 +299,7 @@ static int vop_remove(struct platform_device *pdev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
struct platform_driver vop_platform_driver = {
|
||||
static struct platform_driver vop_platform_driver = {
|
||||
.probe = vop_probe,
|
||||
.remove = vop_remove,
|
||||
.driver = {
|
||||
|
|
Loading…
Reference in New Issue