mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NDIS] INIT/PAGE sections must be uppercase.
This commit is contained in:
parent
d9f9cb247c
commit
fcd00d412e
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue