Commit 109406c9 authored by Jani Nikula's avatar Jani Nikula
Browse files

drm/i915/mpllb: use I915_STATE_WARN() for state mismatch warnings

parent f0978e92
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -6601,14 +6601,12 @@ verify_mpllb_state(struct intel_atomic_state *state,
	encoder = intel_get_crtc_new_encoder(state, new_crtc_state);
	intel_mpllb_readout_hw_state(encoder, &mpllb_hw_state);

#define MPLLB_CHECK(name) do { \
	if (mpllb_sw_state->name != mpllb_hw_state.name) { \
		pipe_config_mismatch(false, crtc, "MPLLB:" __stringify(name), \
				     "(expected 0x%08x, found 0x%08x)", \
				     mpllb_sw_state->name, \
				     mpllb_hw_state.name); \
	} \
} while (0)
#define MPLLB_CHECK(__name)						\
	I915_STATE_WARN(mpllb_sw_state->__name != mpllb_hw_state.__name,	\
			"[CRTC:%d:%s] mismatch in MPLLB: %s (expected 0x%08x, found 0x%08x)", \
			crtc->base.base.id, crtc->base.name,		\
			__stringify(__name),				\
			mpllb_sw_state->__name, mpllb_hw_state.__name)

	MPLLB_CHECK(mpllb_cp);
	MPLLB_CHECK(mpllb_div);