Skip to content

Commit

Permalink
Remove framebuffer injection
Browse files Browse the repository at this point in the history
  • Loading branch information
ExtremeXT committed Nov 13, 2023
1 parent ab0e0d0 commit c49d242
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions NootRX/NootRX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,19 +124,6 @@ void NootRXMain::processPatcher(KernelPatcher &patcher) {
PANIC("NootRX", "Unknown device ID");
}

// No named framebuffer for Navi 22 for now
if (this->chipType == ChipType::Navi21) {
if (this->pciRevision == 0xC1 || this->pciRevision == 0xC3) {
// RX 6800 (XT)
this->GPU->setProperty("@0,name", const_cast<char *>("ATY,Belknap"), 12);
} else {
// RX 6900 XT / RX 6950 XT
this->GPU->setProperty("@0,name", const_cast<char *>("ATY,Carswell"), 13);
}
} else if (this->chipType == ChipType::Navi23) {
this->GPU->setProperty("@0,name", const_cast<char *>("ATY,Henbury"), 12);
}

DeviceInfo::deleter(devInfo);
} else {
SYSLOG("NootRX", "Failed to create DeviceInfo");
Expand Down

0 comments on commit c49d242

Please sign in to comment.