OSDN Git Service

drm/i915/audio: fix indentation, remove extra braces
authorJani Nikula <jani.nikula@intel.com>
Tue, 4 May 2021 08:14:01 +0000 (11:14 +0300)
committerJani Nikula <jani.nikula@intel.com>
Tue, 4 May 2021 12:23:26 +0000 (15:23 +0300)
Cleanup the code. No functional changes.

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/6c2f6afa4c8866f8c1714b4f8dba9ea2d1509e4a.1620115983.git.jani.nikula@intel.com
drivers/gpu/drm/i915/display/intel_audio.c

index 6008343..75871ee 100644 (file)
@@ -597,8 +597,8 @@ static void enable_audio_dsc_wa(struct intel_encoder *encoder,
                val |= HBLANK_EARLY_ENABLE_TGL(pipe);
 
        if (crtc_state->dsc.compression_enable &&
-           (crtc_state->hw.adjusted_mode.hdisplay >= 3840 &&
-           crtc_state->hw.adjusted_mode.vdisplay >= 2160)) {
+           crtc_state->hw.adjusted_mode.hdisplay >= 3840 &&
+           crtc_state->hw.adjusted_mode.vdisplay >= 2160) {
                /* Get hblank early enable value required */
                val &= ~HBLANK_START_COUNT_MASK(pipe);
                hblank_early_prog = calc_hblank_early_prog(encoder, crtc_state);