From d8403c17cacb8b5cb1b48ee1733bc5d1f2f04d33 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 10 Jan 2012 01:23:35 +0000 Subject: [PATCH] [NDIS] - NdisGetCurrentSystemTime can be called at any IRQL - Fixes assertions running the RTL8185 driver svn path=/branches/wlan-bringup/; revision=54896 --- drivers/network/ndis/ndis/time.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/network/ndis/ndis/time.c b/drivers/network/ndis/ndis/time.c index f1fe891638a..28b66f443d3 100644 --- a/drivers/network/ndis/ndis/time.c +++ b/drivers/network/ndis/ndis/time.c @@ -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);