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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3962,7 +3962,7 @@ static int drm_cvt_modes(struct drm_connector *connector,
	struct drm_display_mode *newmode;
	struct drm_device *dev = connector->dev;
	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 };

	for (i = 0; i < 4; i++) {