summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-08-06 17:40:07 +0300
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-08-08 02:33:25 +0000
commitcf33d0b5f785486699b7c63416f30215e2bb8a63 (patch)
treeed1e7a1d856958d581af8b07bbf1b5452a6c2146 /Kernel/FileSystem
parenta6505f6e6d8be7dc0136c7293f6da39ed98e27cb (diff)
downloadserenity-cf33d0b5f785486699b7c63416f30215e2bb8a63.zip
Kernel/FileSystem: Use a new debug flag for SysFS debug messages
Diffstat (limited to 'Kernel/FileSystem')
-rw-r--r--Kernel/FileSystem/SysFS/Subsystems/Bus/USB/DeviceInformation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/SysFS/Subsystems/Bus/USB/DeviceInformation.cpp b/Kernel/FileSystem/SysFS/Subsystems/Bus/USB/DeviceInformation.cpp
index 991dac7272..d4018a2d02 100644
--- a/Kernel/FileSystem/SysFS/Subsystems/Bus/USB/DeviceInformation.cpp
+++ b/Kernel/FileSystem/SysFS/Subsystems/Bus/USB/DeviceInformation.cpp
@@ -115,7 +115,7 @@ ErrorOr<void> SysFSUSBDeviceInformation::refresh_data(OpenFileDescription& descr
ErrorOr<size_t> SysFSUSBDeviceInformation::read_bytes(off_t offset, size_t count, UserOrKernelBuffer& buffer, OpenFileDescription* description) const
{
- dbgln_if(PROCFS_DEBUG, "SysFSUSBDeviceInformation @ {}: read_bytes offset: {} count: {}", name(), offset, count);
+ dbgln_if(SYSFS_DEBUG, "SysFSUSBDeviceInformation @ {}: read_bytes offset: {} count: {}", name(), offset, count);
VERIFY(offset >= 0);
VERIFY(buffer.user_or_kernel_ptr());