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

Commit 47aa1e73 authored by Lucas De Marchi's avatar Lucas De Marchi Committed by Rodrigo Vivi
Browse files

drm/i915: move dpll_info to header

parent 57bdff48
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -1877,13 +1877,6 @@ static void intel_ddi_pll_init(struct drm_device *dev)
	}
}

struct dpll_info {
	const char *name;
	const int id;
	const struct intel_shared_dpll_funcs *funcs;
	uint32_t flags;
};

struct intel_dpll_mgr {
	const struct dpll_info *dpll_info;

+10 −0
Original line number Diff line number Diff line
@@ -205,6 +205,16 @@ struct intel_shared_dpll_funcs {
			     struct intel_dpll_hw_state *hw_state);
};

/**
 * struct dpll_info - display PLL platform specific info
 */
struct dpll_info {
	const char *name;
	const int id;
	const struct intel_shared_dpll_funcs *funcs;
	uint32_t flags;
};

/**
 * struct intel_shared_dpll - display PLL with tracked state and users
 */