-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x86/mce: Streamline MCE subsystem's naming
Rename the containing folder to "mce" which is the most widespread name. Drop the "mce[-_]" filename prefix of some compilation units (while others don't have it). This unifies the file naming in the MCE subsystem: mce/ |-- amd.c |-- apei.c |-- core.c |-- dev-mcelog.c |-- genpool.c |-- inject.c |-- intel.c |-- internal.h |-- Makefile |-- p5.c |-- severity.c |-- therm_throt.c |-- threshold.c `-- winchip.c No functional changes. Signed-off-by: Borislav Petkov <bp@suse.de> Reviewed-by: Ingo Molnar <mingo@kernel.org> Acked-by: Tony Luck <tony.luck@intel.com> Link: https://lkml.kernel.org/r/20181205141323.14995-1-bp@alien8.de
- Loading branch information
Borislav Petkov
committed
Dec 5, 2018
1 parent
2595646
commit 21afaf1
Showing
15 changed files
with
14 additions
and
14 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
10 changes: 5 additions & 5 deletions
10
arch/x86/kernel/cpu/mcheck/Makefile → arch/x86/kernel/cpu/mce/Makefile
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
obj-y = mce.o mce-severity.o mce-genpool.o | ||
obj-y = core.o severity.o genpool.o | ||
|
||
obj-$(CONFIG_X86_ANCIENT_MCE) += winchip.o p5.o | ||
obj-$(CONFIG_X86_MCE_INTEL) += mce_intel.o | ||
obj-$(CONFIG_X86_MCE_AMD) += mce_amd.o | ||
obj-$(CONFIG_X86_MCE_INTEL) += intel.o | ||
obj-$(CONFIG_X86_MCE_AMD) += amd.o | ||
obj-$(CONFIG_X86_MCE_THRESHOLD) += threshold.o | ||
obj-$(CONFIG_X86_MCE_INJECT) += mce-inject.o | ||
obj-$(CONFIG_X86_MCE_INJECT) += inject.o | ||
|
||
obj-$(CONFIG_X86_THERMAL_VECTOR) += therm_throt.o | ||
|
||
obj-$(CONFIG_ACPI_APEI) += mce-apei.o | ||
obj-$(CONFIG_ACPI_APEI) += apei.o | ||
|
||
obj-$(CONFIG_X86_MCELOG_LEGACY) += dev-mcelog.o |
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
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
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
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.