From fcd00d412e215d8e62524bf2e49133e0ecb5d182 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 7 Jul 2019 08:22:16 +0200 Subject: [PATCH] [NDIS] INIT/PAGE sections must be uppercase. --- sdk/include/ddk/ndis.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/include/ddk/ndis.h b/sdk/include/ddk/ndis.h index 916ba98e556..c5f1dd58514 100644 --- a/sdk/include/ddk/ndis.h +++ b/sdk/include/ddk/ndis.h @@ -4482,14 +4482,14 @@ NdisGetCurrentProcessorCpuUsage( * NDIS_INIT_FUNCTION(FunctionName) */ #define NDIS_INIT_FUNCTION(FunctionName) \ - alloc_text(init, FunctionName) + alloc_text(INIT, FunctionName) /* * VOID * NDIS_PAGABLE_FUNCTION(FunctionName) */ #define NDIS_PAGEABLE_FUNCTION(FunctionName) \ - alloc_text(page, FunctionName) + alloc_text(PAGE, FunctionName) #define NDIS_PAGABLE_FUNCTION NDIS_PAGEABLE_FUNCTION -- 2.17.1