mirror of https://github.com/acidanthera/audk.git
22 lines
373 B
C
22 lines
373 B
C
|
/**@file
|
||
|
Install a callback when necessary for setting the Feature Control MSR on all
|
||
|
processors.
|
||
|
|
||
|
Copyright (C) 2020, Rebecca Cran <rebecca@bsdio.com>
|
||
|
Copyright (C) 2016, Red Hat, Inc.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
**/
|
||
|
|
||
|
#include "Platform.h"
|
||
|
|
||
|
VOID
|
||
|
InstallFeatureControlCallback (
|
||
|
VOID
|
||
|
)
|
||
|
{
|
||
|
//
|
||
|
// Nothing to do.
|
||
|
//
|
||
|
}
|