mirror of https://github.com/acidanthera/audk.git
23 lines
425 B
C
23 lines
425 B
C
/** @file
|
|
Internal library function definitions.
|
|
|
|
Copyright (c) Microsoft Corporation.
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef CPU_FEATURES_LIB_H_
|
|
#define CPU_FEATURES_LIB_H_
|
|
|
|
/**
|
|
Internal worker function that is called to complete CPU initialization at the
|
|
end of SmmCpuFeaturesInitializeProcessor().
|
|
|
|
**/
|
|
VOID
|
|
FinishSmmCpuFeaturesInitializeProcessor (
|
|
VOID
|
|
);
|
|
|
|
#endif
|