mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
bad5fa631f
We've grown a bunch of microcode loader files all prefixed with "microcode_". They should be under cpu/ because this is strictly CPU-related functionality so do that and drop the prefix since they're in their own directory now which gives that prefix. :) While at it, drop MICROCODE_INTEL_LIB config item and stash the functionality under CONFIG_MICROCODE_INTEL as it was its only user. Signed-off-by: Borislav Petkov <bp@suse.de> Tested-by: Aravind Gopalakrishnan <Aravind.Gopalakrishnan@amd.com>
7 lines
317 B
Makefile
7 lines
317 B
Makefile
microcode-y := core.o
|
|
obj-$(CONFIG_MICROCODE) += microcode.o
|
|
microcode-$(CONFIG_MICROCODE_INTEL) += intel.o intel_lib.o
|
|
microcode-$(CONFIG_MICROCODE_AMD) += amd.o
|
|
obj-$(CONFIG_MICROCODE_EARLY) += core_early.o
|
|
obj-$(CONFIG_MICROCODE_INTEL_EARLY) += intel_early.o
|
|
obj-$(CONFIG_MICROCODE_AMD_EARLY) += amd_early.o
|