[ros-diffs] [cgutman] 54896: [NDIS] - NdisGetCurrentSystemTime can be called at any IRQL - Fixes assertions running the RTL8185 driver

cgutman at svn.reactos.org cgutman at svn.reactos.org
Tue Jan 10 01:23:36 UTC 2012


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/ndis/ndis/time.c?rev=54896&r1=54895&r2=54896&view=diff
==============================================================================
--- 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);




More information about the Ros-diffs mailing list