aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/vboxvideo/vbox_mode.c
diff options
context:
space:
mode:
authorCraig Kewley <craigkewley@gmail.com>2018-10-10 20:17:05 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-10-11 12:10:32 +0200
commit84ac86fbbe00678151f8fe106dbbd684eb4d6f31 (patch)
tree25f0796f8dd21a3f06a4e2d31c471730b1ed54dc /drivers/staging/vboxvideo/vbox_mode.c
parentc00e1d09e3053c6af6a7f6d405b5b455f247d5d4 (diff)
staging: vboxvideo: make a couple of funcs static
Fix Sparse warnings: drivers/staging/vboxvideo/vbox_mode.c:309:6: warning: symbol 'vbox_primary_atomic_disable' was not declared. Should it be static? drivers/staging/vboxvideo/vbox_mode.c:452:6: warning: symbol 'vbox_cursor_atomic_disable' was not declared. Should it be static? Signed-off-by: Craig Kewley <craigkewley@gmail.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vboxvideo/vbox_mode.c')
-rw-r--r--drivers/staging/vboxvideo/vbox_mode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/vboxvideo/vbox_mode.c b/drivers/staging/vboxvideo/vbox_mode.c
index 78a9c9b13ff6..6acc965247ff 100644
--- a/drivers/staging/vboxvideo/vbox_mode.c
+++ b/drivers/staging/vboxvideo/vbox_mode.c
@@ -306,8 +306,8 @@ static void vbox_primary_atomic_update(struct drm_plane *plane,
plane->state->src_y >> 16);
}
-void vbox_primary_atomic_disable(struct drm_plane *plane,
- struct drm_plane_state *old_state)
+static void vbox_primary_atomic_disable(struct drm_plane *plane,
+ struct drm_plane_state *old_state)
{
struct drm_crtc *crtc = old_state->crtc;
@@ -450,8 +450,8 @@ static void vbox_cursor_atomic_update(struct drm_plane *plane,
mutex_unlock(&vbox->hw_mutex);
}
-void vbox_cursor_atomic_disable(struct drm_plane *plane,
- struct drm_plane_state *old_state)
+static void vbox_cursor_atomic_disable(struct drm_plane *plane,
+ struct drm_plane_state *old_state)
{
struct vbox_private *vbox =
container_of(plane->dev, struct vbox_private, ddev);