diff options
author | Jani Nikula <jani.nikula@intel.com> | 2023-10-31 11:16:43 +0100 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2023-11-09 15:48:27 +0100 |
commit | f415a6078f640ab15bae34d3c6a1d8e6071363de (patch) | |
tree | dc53de2a55adb7a81376baf4b3cf7b860e96cb8d /drivers/gpu/drm/Makefile | |
parent | drm/edid: add helpers to get/set struct cea_sad from/to 3-byte sad (diff) | |
download | linux-f415a6078f640ab15bae34d3c6a1d8e6071363de.tar.xz linux-f415a6078f640ab15bae34d3c6a1d8e6071363de.zip |
drm/eld: add helpers to modify the SADs of an ELD
Occasionally it's necessary for drivers to modify the SADs of an ELD,
but it's not so cool to have drivers poke at the ELD buffer directly.
Using the helpers to translate between 3-byte SAD and struct cea_sad,
add ELD helpers to get/set the SADs from/to an ELD.
v2: s/i/sad_index/ (Mitul)
Cc: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/8e9a05f2b1e0dd184132d636e1e778e8917ec25d.1698747331.git.jani.nikula@intel.com
Diffstat (limited to 'drivers/gpu/drm/Makefile')
-rw-r--r-- | drivers/gpu/drm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile index 8e1bde059170..cdbe91ac0bfc 100644 --- a/drivers/gpu/drm/Makefile +++ b/drivers/gpu/drm/Makefile @@ -22,6 +22,7 @@ drm-y := \ drm_drv.o \ drm_dumb_buffers.o \ drm_edid.o \ + drm_eld.o \ drm_encoder.o \ drm_file.o \ drm_fourcc.o \ |