blob: 40d9ebdbe6ff340de23176377f99fbb4d2c375e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**@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.
//
}
|