Author: cgutman
Date: Tue Jan 10 01:23:35 2012
New Revision: 54896
URL:
http://svn.reactos.org/svn/reactos?rev=54896&view=rev
Log:
[NDIS]
- NdisGetCurrentSystemTime can be called at any IRQL
- Fixes assertions running the RTL8185 driver
Modified:
branches/wlan-bringup/drivers/network/ndis/ndis/time.c
Modified: branches/wlan-bringup/drivers/network/ndis/ndis/time.c
URL:
http://svn.reactos.org/svn/reactos/branches/wlan-bringup/drivers/network/nd…
==============================================================================
--- branches/wlan-bringup/drivers/network/ndis/ndis/time.c [iso-8859-1] (original)
+++ branches/wlan-bringup/drivers/network/ndis/ndis/time.c [iso-8859-1] Tue Jan 10
01:23:35 2012
@@ -57,10 +57,9 @@
* ARGUMENTS:
* pSystemTime: pointer to the returned system time
* NOTES:
- * - call at IRQL <= DISPATCH_LEVEL
- */
-{
- ASSERT_IRQL(DISPATCH_LEVEL);
+ * - call at any IRQL
+ */
+{
ASSERT(pSystemTime);
KeQuerySystemTime (pSystemTime);