Commit f4be705f authored by Jani Nikula's avatar Jani Nikula
parent 531747b8
...@@ -22,6 +22,7 @@ header_test := \ ...@@ -22,6 +22,7 @@ header_test := \
intel_csr.h \ intel_csr.h \
intel_ddi.h \ intel_ddi.h \
intel_dp.h \ intel_dp.h \
intel_dpll_mgr.h \
intel_drv.h \ intel_drv.h \
intel_dvo.h \ intel_dvo.h \
intel_dvo_dev.h \ intel_dvo_dev.h \
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
* DEALINGS IN THE SOFTWARE. * DEALINGS IN THE SOFTWARE.
*/ */
#include "intel_dpll_mgr.h"
#include "intel_drv.h" #include "intel_drv.h"
/** /**
......
...@@ -25,6 +25,10 @@ ...@@ -25,6 +25,10 @@
#ifndef _INTEL_DPLL_MGR_H_ #ifndef _INTEL_DPLL_MGR_H_
#define _INTEL_DPLL_MGR_H_ #define _INTEL_DPLL_MGR_H_
#include <linux/types.h>
#include "intel_display.h"
/*FIXME: Move this to a more appropriate place. */ /*FIXME: Move this to a more appropriate place. */
#define abs_diff(a, b) ({ \ #define abs_diff(a, b) ({ \
typeof(a) __a = (a); \ typeof(a) __a = (a); \
...@@ -32,13 +36,13 @@ ...@@ -32,13 +36,13 @@
(void) (&__a == &__b); \ (void) (&__a == &__b); \
__a > __b ? (__a - __b) : (__b - __a); }) __a > __b ? (__a - __b) : (__b - __a); })
struct drm_atomic_state;
struct drm_device;
struct drm_i915_private; struct drm_i915_private;
struct intel_crtc; struct intel_crtc;
struct intel_crtc_state; struct intel_crtc_state;
struct intel_encoder; struct intel_encoder;
struct intel_shared_dpll; struct intel_shared_dpll;
struct intel_dpll_mgr;
/** /**
* enum intel_dpll_id - possible DPLL ids * enum intel_dpll_id - possible DPLL ids
......
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