[NDIS] INIT/PAGE sections must be uppercase.

This commit is contained in:
Thomas Faber 2019-07-07 08:22:16 +02:00
parent d9f9cb247c
commit fcd00d412e
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -4482,14 +4482,14 @@ NdisGetCurrentProcessorCpuUsage(
* NDIS_INIT_FUNCTION(FunctionName) * NDIS_INIT_FUNCTION(FunctionName)
*/ */
#define NDIS_INIT_FUNCTION(FunctionName) \ #define NDIS_INIT_FUNCTION(FunctionName) \
alloc_text(init, FunctionName) alloc_text(INIT, FunctionName)
/* /*
* VOID * VOID
* NDIS_PAGABLE_FUNCTION(FunctionName) * NDIS_PAGABLE_FUNCTION(FunctionName)
*/ */
#define NDIS_PAGEABLE_FUNCTION(FunctionName) \ #define NDIS_PAGEABLE_FUNCTION(FunctionName) \
alloc_text(page, FunctionName) alloc_text(PAGE, FunctionName)
#define NDIS_PAGABLE_FUNCTION NDIS_PAGEABLE_FUNCTION #define NDIS_PAGABLE_FUNCTION NDIS_PAGEABLE_FUNCTION