]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/i915: move more atomic plane declarations to intel_atomic_plane.h
authorJani Nikula <jani.nikula@intel.com>
Thu, 6 Jun 2019 12:22:02 +0000 (15:22 +0300)
committerJani Nikula <jani.nikula@intel.com>
Mon, 10 Jun 2019 07:29:31 +0000 (10:29 +0300)
Some function declarations in intel_drv.h were missed when
intel_atomic_plane.h was created.

Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190606122203.13416-3-jani.nikula@intel.com
drivers/gpu/drm/i915/intel_atomic_plane.h
drivers/gpu/drm/i915/intel_drv.h

index 0a9651376d0e67bba988aeb98d5c5a1e560a09c1..24320041498dafc562f4ea35dfa9f8a0e884efe1 100644 (file)
@@ -6,7 +6,11 @@
 #ifndef __INTEL_ATOMIC_PLANE_H__
 #define __INTEL_ATOMIC_PLANE_H__
 
+#include <linux/types.h>
+
+struct drm_crtc_state;
 struct drm_plane;
+struct drm_property;
 struct intel_atomic_state;
 struct intel_crtc;
 struct intel_crtc_state;
@@ -38,5 +42,17 @@ int intel_plane_atomic_check_with_state(const struct intel_crtc_state *old_crtc_
                                        struct intel_crtc_state *crtc_state,
                                        const struct intel_plane_state *old_plane_state,
                                        struct intel_plane_state *intel_state);
+int intel_plane_atomic_get_property(struct drm_plane *plane,
+                                   const struct drm_plane_state *state,
+                                   struct drm_property *property,
+                                   u64 *val);
+int intel_plane_atomic_set_property(struct drm_plane *plane,
+                                   struct drm_plane_state *state,
+                                   struct drm_property *property,
+                                   u64 val);
+int intel_plane_atomic_calc_changes(const struct intel_crtc_state *old_crtc_state,
+                                   struct drm_crtc_state *crtc_state,
+                                   const struct intel_plane_state *old_plane_state,
+                                   struct drm_plane_state *plane_state);
 
 #endif /* __INTEL_ATOMIC_PLANE_H__ */
index e3f2b9976ead284dcd71948c46900681b5d4be0b..3e337317f77ee59e9c76d4ff87b4161f9acb344a 100644 (file)
@@ -1535,18 +1535,6 @@ int intel_prepare_plane_fb(struct drm_plane *plane,
                           struct drm_plane_state *new_state);
 void intel_cleanup_plane_fb(struct drm_plane *plane,
                            struct drm_plane_state *old_state);
-int intel_plane_atomic_get_property(struct drm_plane *plane,
-                                   const struct drm_plane_state *state,
-                                   struct drm_property *property,
-                                   u64 *val);
-int intel_plane_atomic_set_property(struct drm_plane *plane,
-                                   struct drm_plane_state *state,
-                                   struct drm_property *property,
-                                   u64 val);
-int intel_plane_atomic_calc_changes(const struct intel_crtc_state *old_crtc_state,
-                                   struct drm_crtc_state *crtc_state,
-                                   const struct intel_plane_state *old_plane_state,
-                                   struct drm_plane_state *plane_state);
 
 void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
                                    enum pipe pipe);