[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:
Hervé Poussineau 2020-03-26 11:53:27 +01:00
parent 796c1ac993
commit f5658fd3b4
2 changed files with 10 additions and 10 deletions

View file

@ -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,

View file

@ -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,