mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 09:14:07 -04:00
drm/i915: use PIPE_CONF_CHECK_BOOL() for bool members
Don't treat bools as integers. v2: Rebase Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20231129173317.1192269-1-jani.nikula@intel.com
This commit is contained in:
@@ -5091,8 +5091,8 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
|
||||
#define PIPE_CONF_QUIRK(quirk) \
|
||||
((current_config->quirks | pipe_config->quirks) & (quirk))
|
||||
|
||||
PIPE_CONF_CHECK_I(hw.enable);
|
||||
PIPE_CONF_CHECK_I(hw.active);
|
||||
PIPE_CONF_CHECK_BOOL(hw.enable);
|
||||
PIPE_CONF_CHECK_BOOL(hw.active);
|
||||
|
||||
PIPE_CONF_CHECK_I(cpu_transcoder);
|
||||
PIPE_CONF_CHECK_I(mst_master_transcoder);
|
||||
@@ -5301,8 +5301,8 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
|
||||
PIPE_CONF_CHECK_I(dsc.config.second_line_bpg_offset);
|
||||
PIPE_CONF_CHECK_I(dsc.config.nsl_bpg_offset);
|
||||
|
||||
PIPE_CONF_CHECK_I(dsc.compression_enable);
|
||||
PIPE_CONF_CHECK_I(dsc.dsc_split);
|
||||
PIPE_CONF_CHECK_BOOL(dsc.compression_enable);
|
||||
PIPE_CONF_CHECK_BOOL(dsc.dsc_split);
|
||||
PIPE_CONF_CHECK_I(dsc.compressed_bpp_x16);
|
||||
|
||||
PIPE_CONF_CHECK_BOOL(splitter.enable);
|
||||
|
||||
Reference in New Issue
Block a user