Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/crtc: Drop no_vblank bit field

The no_vblank field in drm_crtc_state is defined as a bit-field with a
single bit.

This will create a syntax issue with the macros we'll introduce next,
and most other booleans but the *_changed ones in drm_crtc_state do not
use a bit field anyway.

Let's drop it.

Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://lore.kernel.org/r/20250902-drm-state-readout-v1-11-14ad5315da3f@kernel.org
Signed-off-by: Maxime Ripard <mripard@kernel.org>
Link: https://lore.kernel.org/r/20250902-drm-state-readout-v1-11-14ad5315da3f@kernel.org

+1 -1
+1 -1
include/drm/drm_crtc.h
··· 186 186 * this case the driver will send the VBLANK event on its own when the 187 187 * writeback job is complete. 188 188 */ 189 - bool no_vblank : 1; 189 + bool no_vblank; 190 190 191 191 /** 192 192 * @plane_mask: Bitmask of drm_plane_mask(plane) of planes attached to