From: Simon Ser Date: Fri, 14 Jul 2023 10:46:04 +0000 (+0000) Subject: drm/file: use explicit values for enum drm_minor_type X-Git-Tag: v6.6.17~3937^2~22^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03fad56ab746c23c9bf93bbfe3b0941dd298180e;p=platform%2Fkernel%2Flinux-rpi.git drm/file: use explicit values for enum drm_minor_type This makes it clearer that the values cannot be changed because they are ABI. Signed-off-by: Simon Ser Reviewed-by:James Zhu Reviewed-by: Thomas Zimmermann Cc: Christian König Cc: Marek Olšák Cc: Daniel Vetter Link: https://patchwork.freedesktop.org/patch/msgid/20230714104557.518457-2-contact@emersion.fr --- diff --git a/include/drm/drm_file.h b/include/drm/drm_file.h index 9669120..0102393 100644 --- a/include/drm/drm_file.h +++ b/include/drm/drm_file.h @@ -50,16 +50,16 @@ struct file; * header include loops we need it here for now. */ -/* Note that the order of this enum is ABI (it determines +/* Note that the values of this enum are ABI (it determines * /dev/dri/renderD* numbers). * * Setting DRM_MINOR_ACCEL to 32 gives enough space for more drm minors to * be implemented before we hit any future */ enum drm_minor_type { - DRM_MINOR_PRIMARY, - DRM_MINOR_CONTROL, - DRM_MINOR_RENDER, + DRM_MINOR_PRIMARY = 0, + DRM_MINOR_CONTROL = 1, + DRM_MINOR_RENDER = 2, DRM_MINOR_ACCEL = 32, };