mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
[NDIS]
- NdisGetCurrentSystemTime can be called at any IRQL - Fixes assertions running the RTL8185 driver svn path=/branches/wlan-bringup/; revision=54896
This commit is contained in:
parent
9f0044039b
commit
d8403c17ca
1 changed files with 1 additions and 2 deletions
|
@ -57,10 +57,9 @@ NdisGetCurrentSystemTime (
|
|||
* ARGUMENTS:
|
||||
* pSystemTime: pointer to the returned system time
|
||||
* NOTES:
|
||||
* - call at IRQL <= DISPATCH_LEVEL
|
||||
* - call at any IRQL
|
||||
*/
|
||||
{
|
||||
ASSERT_IRQL(DISPATCH_LEVEL);
|
||||
ASSERT(pSystemTime);
|
||||
|
||||
KeQuerySystemTime (pSystemTime);
|
||||
|
|
Loading…
Reference in a new issue