mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 08:28:13 +00:00
video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to avoid black screen
[ Upstream commit62d89a7d49
] Start from commit11be60bd66
"matroxfb: add Matrox MGA-G200eW board support", when maxvram is 0x800000, monitor become black w/ error message said: "The current input timing is not supported by the monitor display. Please change your input timing to 1920x1080@60Hz ...". Fixes:11be60bd66
("matroxfb: add Matrox MGA-G200eW board support") Signed-off-by: Z. Liu <liuzx@knownsec.com> Signed-off-by: Helge Deller <deller@gmx.de> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
a07ff4eeaf
commit
323bc0cd89
1 changed files with 1 additions and 1 deletions
|
@ -1377,7 +1377,7 @@ static struct video_board vbG200 = {
|
|||
.lowlevel = &matrox_G100
|
||||
};
|
||||
static struct video_board vbG200eW = {
|
||||
.maxvram = 0x800000,
|
||||
.maxvram = 0x100000,
|
||||
.maxdisplayable = 0x800000,
|
||||
.accelID = FB_ACCEL_MATROX_MGAG200,
|
||||
.lowlevel = &matrox_G100
|
||||
|
|
Loading…
Reference in a new issue