From 1705eba9f94ed1801d6f72d5b3ec2fb0d6b9deea Mon Sep 17 00:00:00 2001 From: Visual Ehrmanntraut <30368284+VisualEhrmanntraut@users.noreply.github.com> Date: Fri, 8 Nov 2024 19:46:41 +0200 Subject: [PATCH] refactor: Remove slide prints --- NootedRed/AppleGFXHDA.cpp | 1 - NootedRed/HWLibs.cpp | 1 - NootedRed/X5000.cpp | 1 - NootedRed/X6000.cpp | 1 - NootedRed/X6000FB.cpp | 1 - 5 files changed, 5 deletions(-) diff --git a/NootedRed/AppleGFXHDA.cpp b/NootedRed/AppleGFXHDA.cpp index 786c3b02..2f3c97bd 100644 --- a/NootedRed/AppleGFXHDA.cpp +++ b/NootedRed/AppleGFXHDA.cpp @@ -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; diff --git a/NootedRed/HWLibs.cpp b/NootedRed/HWLibs.cpp index ebbaadd9..1cfea502 100644 --- a/NootedRed/HWLibs.cpp +++ b/NootedRed/HWLibs.cpp @@ -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; diff --git a/NootedRed/X5000.cpp b/NootedRed/X5000.cpp index 8b2d20cf..5decaad9 100644 --- a/NootedRed/X5000.cpp +++ b/NootedRed/X5000.cpp @@ -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; diff --git a/NootedRed/X6000.cpp b/NootedRed/X6000.cpp index e32b6521..f2b1a09e 100644 --- a/NootedRed/X6000.cpp +++ b/NootedRed/X6000.cpp @@ -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; diff --git a/NootedRed/X6000FB.cpp b/NootedRed/X6000FB.cpp index 950a9740..af602e4d 100644 --- a/NootedRed/X6000FB.cpp +++ b/NootedRed/X6000FB.cpp @@ -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;