-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kent Russell <[email protected]> Change-Id: Ie4351cb90a263486c58675f1c816d4bd1fe11d4c
- Loading branch information
1 parent
bdaa35d
commit 73b3910
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
#ifndef AMDKCL_MCE_H | ||
#define AMDKCL_MCE_H | ||
|
||
#include <asm/mce.h> | ||
/* Copied from asm/mce.h */ | ||
#ifndef XEC | ||
#define XEC(x, mask) (((x) >> 16) & mask) | ||
#endif | ||
|
||
#endif |