mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[VIDEOPRT]
Merge r40926 from amd64 branch: return ERROR_INVALID_FUNCTION on amd64, not ERROR_INVALID_ACCESS from VideoPortEn/DisableInterrupt. Fixes compilation of videoprt for amd64. svn path=/trunk/; revision=48088
This commit is contained in:
parent
677bd3c418
commit
9908019e62
1 changed files with 2 additions and 2 deletions
|
@ -137,7 +137,7 @@ VideoPortEnableInterrupt(IN PVOID HwDeviceExtension)
|
|||
#else
|
||||
/* FIXME: Function still present? If so what to use instead of HalEnableSystemInterrupt? */
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_ACCESS;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -168,6 +168,6 @@ VideoPortDisableInterrupt(IN PVOID HwDeviceExtension)
|
|||
#else
|
||||
/* FIXME: Function still present? If so what to use instead of HalDisableSystemInterrupt? */
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_ACCESS;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue