mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[STORAHCI] Replace some __inline by FORCEINLINE
Functions were declared as __inline, then used, and then defined. This leads to some linking errors with some compilers.
This commit is contained in:
parent
796c1ac993
commit
f5658fd3b4
2 changed files with 10 additions and 10 deletions
|
@ -2438,7 +2438,7 @@ AhciAdapterReset (
|
|||
* @param Buffer
|
||||
* @param BufferSize
|
||||
*/
|
||||
__inline
|
||||
FORCEINLINE
|
||||
VOID
|
||||
AhciZeroMemory (
|
||||
__out PCHAR Buffer,
|
||||
|
@ -2466,7 +2466,7 @@ AhciZeroMemory (
|
|||
* @return
|
||||
* return TRUE if provided port is valid (implemented) or not
|
||||
*/
|
||||
__inline
|
||||
FORCEINLINE
|
||||
BOOLEAN
|
||||
IsPortValid (
|
||||
__in PAHCI_ADAPTER_EXTENSION AdapterExtension,
|
||||
|
@ -2496,7 +2496,7 @@ IsPortValid (
|
|||
* return TRUE if Srb is successfully added to Queue
|
||||
*
|
||||
*/
|
||||
__inline
|
||||
FORCEINLINE
|
||||
BOOLEAN
|
||||
AddQueue (
|
||||
__inout PAHCI_QUEUE Queue,
|
||||
|
@ -2527,7 +2527,7 @@ AddQueue (
|
|||
* return Srb
|
||||
*
|
||||
*/
|
||||
__inline
|
||||
FORCEINLINE
|
||||
PVOID
|
||||
RemoveQueue (
|
||||
__inout PAHCI_QUEUE Queue
|
||||
|
@ -2590,7 +2590,7 @@ GetSrbExtension (
|
|||
* return Logical Address of the block
|
||||
*
|
||||
*/
|
||||
__inline
|
||||
FORCEINLINE
|
||||
ULONG64
|
||||
AhciGetLba (
|
||||
__in PCDB Cdb,
|
||||
|
|
|
@ -581,14 +581,14 @@ AhciAdapterReset (
|
|||
__in PAHCI_ADAPTER_EXTENSION AdapterExtension
|
||||
);
|
||||
|
||||
__inline
|
||||
FORCEINLINE
|
||||
VOID
|
||||
AhciZeroMemory (
|
||||
__out PCHAR Buffer,
|
||||
__in ULONG BufferSize
|
||||
);
|
||||
|
||||
__inline
|
||||
FORCEINLINE
|
||||
BOOLEAN
|
||||
IsPortValid (
|
||||
__in PAHCI_ADAPTER_EXTENSION AdapterExtension,
|
||||
|
@ -632,14 +632,14 @@ UCHAR DeviceReportLuns (
|
|||
__in PCDB Cdb
|
||||
);
|
||||
|
||||
__inline
|
||||
FORCEINLINE
|
||||
BOOLEAN
|
||||
AddQueue (
|
||||
__inout PAHCI_QUEUE Queue,
|
||||
__in PVOID Srb
|
||||
);
|
||||
|
||||
__inline
|
||||
FORCEINLINE
|
||||
PVOID
|
||||
RemoveQueue (
|
||||
__inout PAHCI_QUEUE Queue
|
||||
|
@ -651,7 +651,7 @@ GetSrbExtension(
|
|||
__in PSCSI_REQUEST_BLOCK Srb
|
||||
);
|
||||
|
||||
__inline
|
||||
FORCEINLINE
|
||||
ULONG64
|
||||
AhciGetLba (
|
||||
__in PCDB Cdb,
|
||||
|
|
Loading…
Reference in a new issue