Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 45dfe577 authored by Gerd Hoffmann's avatar Gerd Hoffmann
Browse files

drm/qxl: declare a bunch of functions as static

parent 6545135a
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -437,7 +437,7 @@ static void qxl_monitors_config_set(struct qxl_device *qdev,

}

void qxl_mode_set_nofb(struct drm_crtc *crtc)
static void qxl_mode_set_nofb(struct drm_crtc *crtc)
{
	struct qxl_device *qdev = crtc->dev->dev_private;
	struct qxl_crtc *qcrtc = to_qxl_crtc(crtc);
@@ -475,7 +475,7 @@ static const struct drm_crtc_helper_funcs qxl_crtc_helper_funcs = {
	.atomic_flush = qxl_crtc_atomic_flush,
};

int qxl_primary_atomic_check(struct drm_plane *plane,
static int qxl_primary_atomic_check(struct drm_plane *plane,
				    struct drm_plane_state *state)
{
	struct qxl_device *qdev = plane->dev->dev_private;
@@ -547,7 +547,7 @@ static void qxl_primary_atomic_disable(struct drm_plane *plane,
	}
}

int qxl_plane_atomic_check(struct drm_plane *plane,
static int qxl_plane_atomic_check(struct drm_plane *plane,
				  struct drm_plane_state *state)
{
	return 0;
@@ -647,7 +647,7 @@ static void qxl_cursor_atomic_update(struct drm_plane *plane,

}

void qxl_cursor_atomic_disable(struct drm_plane *plane,
static void qxl_cursor_atomic_disable(struct drm_plane *plane,
				      struct drm_plane_state *old_state)
{
	struct qxl_device *qdev = plane->dev->dev_private;
@@ -675,7 +675,7 @@ void qxl_cursor_atomic_disable(struct drm_plane *plane,
	qxl_release_fence_buffer_objects(release);
}

int qxl_plane_prepare_fb(struct drm_plane *plane,
static int qxl_plane_prepare_fb(struct drm_plane *plane,
				struct drm_plane_state *new_state)
{
	struct drm_gem_object *obj;
+2 −2
Original line number Diff line number Diff line
@@ -221,7 +221,7 @@ struct qxl_bo *qxl_bo_ref(struct qxl_bo *bo)
	return bo;
}

int __qxl_bo_pin(struct qxl_bo *bo, u32 domain, u64 *gpu_addr)
static int __qxl_bo_pin(struct qxl_bo *bo, u32 domain, u64 *gpu_addr)
{
	struct drm_device *ddev = bo->gem_base.dev;
	int r;
@@ -244,7 +244,7 @@ int __qxl_bo_pin(struct qxl_bo *bo, u32 domain, u64 *gpu_addr)
	return r;
}

int __qxl_bo_unpin(struct qxl_bo *bo)
static int __qxl_bo_unpin(struct qxl_bo *bo)
{
	struct drm_device *ddev = bo->gem_base.dev;
	int r, i;