Commit bce1eb50 authored by Colin Ian King's avatar Colin Ian King Committed by Jani Nikula

drm/edid: make read-only const array static

Don't populate the const array on the stack, instead make it static.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230627170109.751829-1-colin.i.king@gmail.com
parent 95badecb
...@@ -3962,7 +3962,7 @@ static int drm_cvt_modes(struct drm_connector *connector, ...@@ -3962,7 +3962,7 @@ static int drm_cvt_modes(struct drm_connector *connector,
struct drm_display_mode *newmode; struct drm_display_mode *newmode;
struct drm_device *dev = connector->dev; struct drm_device *dev = connector->dev;
const struct cvt_timing *cvt; const struct cvt_timing *cvt;
const int rates[] = { 60, 85, 75, 60, 50 }; static const int rates[] = { 60, 85, 75, 60, 50 };
const u8 empty[3] = { 0, 0, 0 }; const u8 empty[3] = { 0, 0, 0 };
for (i = 0; i < 4; i++) { for (i = 0; i < 4; i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment