summaryrefslogtreecommitdiff
path: root/Kernel/Graphics/VirtIOGPU
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-07-22 19:43:50 +0100
committerLinus Groh <mail@linusgroh.de>2022-07-22 23:09:43 +0100
commit8150d71821c31a23b5bc59be0b428ffbdf99b9b9 (patch)
tree61bb3a4dc83a79971b0959fc2e0870cc987dc2ec /Kernel/Graphics/VirtIOGPU
parent5a106b6401fa456a10e0402895db3be3f7d91358 (diff)
downloadserenity-8150d71821c31a23b5bc59be0b428ffbdf99b9b9.zip
Everywhere: Prefix 'TYPEDEF_DISTINCT_ORDERED_ID' with 'AK_'
Diffstat (limited to 'Kernel/Graphics/VirtIOGPU')
-rw-r--r--Kernel/Graphics/VirtIOGPU/Protocol.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/Graphics/VirtIOGPU/Protocol.h b/Kernel/Graphics/VirtIOGPU/Protocol.h
index 374fab657c..16538da1f0 100644
--- a/Kernel/Graphics/VirtIOGPU/Protocol.h
+++ b/Kernel/Graphics/VirtIOGPU/Protocol.h
@@ -11,9 +11,9 @@
#define VIRTIO_GPU_MAX_SCANOUTS 16
namespace Kernel::Graphics::VirtIOGPU {
-TYPEDEF_DISTINCT_ORDERED_ID(u32, ContextID);
-TYPEDEF_DISTINCT_ORDERED_ID(u32, ResourceID);
-TYPEDEF_DISTINCT_ORDERED_ID(u32, ScanoutID);
+AK_TYPEDEF_DISTINCT_ORDERED_ID(u32, ContextID);
+AK_TYPEDEF_DISTINCT_ORDERED_ID(u32, ResourceID);
+AK_TYPEDEF_DISTINCT_ORDERED_ID(u32, ScanoutID);
};
#define VREND_MAX_CTX 64