mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-12-25 03:47:31 +01:00
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>
317 B
317 B
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