Skip to content

Commit

Permalink
refactor: Remove slide prints
Browse files Browse the repository at this point in the history
  • Loading branch information
VisualEhrmanntraut committed Nov 8, 2024
1 parent a530251 commit 1705eba
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion NootedRed/AppleGFXHDA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ void AppleGFXHDA::init() {

void AppleGFXHDA::processKext(KernelPatcher &patcher, size_t id, mach_vm_address_t slide, size_t size) {
if (kextAppleGFXHDA.loadIndex == id) {
SYSLOG_COND(ADDPR(debugEnabled), "AGFXHDA", "slide is 0x%llx", slide);
NRed::singleton().hwLateInit();

const UInt32 probeFind = Navi10HDMIID;
Expand Down
1 change: 0 additions & 1 deletion NootedRed/HWLibs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ void X5000HWLibs::init() {

void X5000HWLibs::processKext(KernelPatcher &patcher, size_t id, mach_vm_address_t slide, size_t size) {
if (kextRadeonX5000HWLibs.loadIndex == id) {
SYSLOG_COND(ADDPR(debugEnabled), "X5000HWLibs", "slide is 0x%llx", slide);
NRed::singleton().hwLateInit();

CAILAsicCapsEntry *orgCapsTable;
Expand Down
1 change: 0 additions & 1 deletion NootedRed/X5000.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ void X5000::init() {

void X5000::processKext(KernelPatcher &patcher, size_t id, mach_vm_address_t slide, size_t size) {
if (kextRadeonX5000.loadIndex == id) {
SYSLOG_COND(ADDPR(debugEnabled), "X5000", "slide is 0x%llx", slide);
NRed::singleton().hwLateInit();

UInt32 *orgChannelTypes;
Expand Down
1 change: 0 additions & 1 deletion NootedRed/X6000.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ void X6000::init() {

bool X6000::processKext(KernelPatcher &patcher, size_t id, mach_vm_address_t slide, size_t size) {
if (kextRadeonX6000.loadIndex == id) {
SYSLOG_COND(ADDPR(debugEnabled), "X6000", "slide is 0x%llx", slide);
NRed::singleton().hwLateInit();

void *orgFillUBMSurface, *orgConfigureDisplay, *orgGetDisplayInfo, *orgAllocateScanoutFB;
Expand Down
1 change: 0 additions & 1 deletion NootedRed/X6000FB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ void X6000FB::init() {

void X6000FB::processKext(KernelPatcher &patcher, size_t id, mach_vm_address_t slide, size_t size) {
if (kextRadeonX6000Framebuffer.loadIndex == id) {
SYSLOG_COND(ADDPR(debugEnabled), "X6000FB", "slide is 0x%llx", slide);
NRed::singleton().hwLateInit();

CAILAsicCapsEntry *orgAsicCapsTable;
Expand Down

0 comments on commit 1705eba

Please sign in to comment.