mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
drm/nouveau: Fix the INIT_CONFIGURE_PREINIT BIOS opcode.
Signed-off-by: Francisco Jerez <currojerez@riseup.net> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
0bf9b0e0ce
commit
3c9b25349e
@ -2595,7 +2595,7 @@ init_configure_preinit(struct nvbios *bios, uint16_t offset,
|
||||
/* no iexec->execute check by design */
|
||||
|
||||
uint32_t straps = bios_rd32(bios, NV_PEXTDEV_BOOT_0);
|
||||
uint8_t cr3c = ((straps << 2) & 0xf0) | (straps & (1 << 6));
|
||||
uint8_t cr3c = ((straps << 2) & 0xf0) | (straps & 0x40) >> 6;
|
||||
|
||||
if (bios->major_version > 2)
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user