mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 10:25:25 +01:00
This is a continuation of the 4.14 series by the Open Enterprise Linux Alliance, ostensibly to the same maintenance standards as the now discontinued kernel.org LTS. This code is primarily offered as a Git repository, with gz tarballs also available, but no xz versions. Switching back to a gzipped version of the kernel source code would introduce too much srcfs growth, so we use the last kernel.org tar.xz release (4.14.336), and apply OpenELA's changes using a patch generated from the Git repository.
24 lines
900 B
Diff
24 lines
900 B
Diff
SPDX-FileCopyrightText: 2024 Gábor Stefanik <netrolller.3d@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
Remove BUILD_BUG_ON check as it causes a link error
|
|
|
|
--- drivers/gpu/drm/drm_edid.c.bak 2024-02-16 08:36:01.168832650 +0100
|
|
+++ drivers/gpu/drm/drm_edid.c 2024-02-16 08:36:58.148828524 +0100
|
|
@@ -2879,15 +2879,6 @@
|
|
* get the other variants by simply increasing the
|
|
* vertical front porch length.
|
|
*/
|
|
- BUILD_BUG_ON(edid_cea_modes[8].vtotal != 262 ||
|
|
- edid_cea_modes[9].vtotal != 262 ||
|
|
- edid_cea_modes[12].vtotal != 262 ||
|
|
- edid_cea_modes[13].vtotal != 262 ||
|
|
- edid_cea_modes[23].vtotal != 312 ||
|
|
- edid_cea_modes[24].vtotal != 312 ||
|
|
- edid_cea_modes[27].vtotal != 312 ||
|
|
- edid_cea_modes[28].vtotal != 312);
|
|
-
|
|
if (((vic == 8 || vic == 9 ||
|
|
vic == 12 || vic == 13) && mode->vtotal < 263) ||
|
|
((vic == 23 || vic == 24 ||
|