- 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:
Cameron Gutman 2012-01-10 01:23:35 +00:00
parent 9f0044039b
commit d8403c17ca

View file

@ -57,10 +57,9 @@ NdisGetCurrentSystemTime (
* ARGUMENTS: * ARGUMENTS:
* pSystemTime: pointer to the returned system time * pSystemTime: pointer to the returned system time
* NOTES: * NOTES:
* - call at IRQL <= DISPATCH_LEVEL * - call at any IRQL
*/ */
{ {
ASSERT_IRQL(DISPATCH_LEVEL);
ASSERT(pSystemTime); ASSERT(pSystemTime);
KeQuerySystemTime (pSystemTime); KeQuerySystemTime (pSystemTime);