drm: Move drm_set_preferred_mode() helper from drm_edid to drm_modes
authorJavier Martinez Canillas <javierm@redhat.com>
Tue, 2 Jan 2024 12:21:58 +0000 (13:21 +0100)
committerJavier Martinez Canillas <javierm@redhat.com>
Fri, 5 Jan 2024 20:14:46 +0000 (21:14 +0100)
commit5343f29b3dc534be01b45cd3a3e43572996f96f8
tree2d22b555764663aeb6be3236e401c5505f9dec4a
parente130ba220da559a8eac60eb5ff60b0774ea17009
drm: Move drm_set_preferred_mode() helper from drm_edid to drm_modes

The helper is generic, it doesn't use the opaque EDID type struct drm_edid
and is also used by drivers that only support non-probeable displays such
as fixed panels.

These drivers add a list of modes using drm_mode_probed_add() and then set
a preferred mode using the drm_set_preferred_mode() helper.

It seems more logical to have the helper definition in drm_modes.o instead
of drm_edid.o, since the former contains modes helper while the latter has
helpers to manage the EDID information.

Since both drm_edid.o and drm_modes.o object files are built-in the drm.o
object, there are no functional changes. But besides being a more logical
place for this helper, it could also allow to eventually make drm_edid.o
optional and not included in drm.o if only fixed panels must be supported
in a given system.

Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240102122208.3103597-1-javierm@redhat.com
drivers/gpu/drm/drm_edid.c
drivers/gpu/drm/drm_modes.c
include/drm/drm_edid.h
include/drm/drm_modes.h