mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08:00
[NDIS] INIT/PAGE sections must be uppercase.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user