Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

x86/PCI: Drop 'pci' suffix from intel_mid_pci.c

CE4100 PCI specific code has no 'pci' suffix in the filename,
intel_mid_pci.c is the only one that duplicates the folder name in its
filename, drop that redundancy.

While at it, group the respective modules in the Makefile.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Ingo Molnar <mingo@kernel.org>
Link: https://patch.msgid.link/20250407070321.3761063-1-andriy.shevchenko@linux.intel.com

authored by

Andy Shevchenko and committed by
Bjorn Helgaas
a2c6c1c2 0af2f6be

+4 -4
+1 -1
MAINTAINERS
··· 12120 12120 L: linux-kernel@vger.kernel.org 12121 12121 S: Supported 12122 12122 F: arch/x86/include/asm/intel-mid.h 12123 - F: arch/x86/pci/intel_mid_pci.c 12123 + F: arch/x86/pci/intel_mid.c 12124 12124 F: arch/x86/platform/intel-mid/ 12125 12125 F: drivers/dma/hsu/ 12126 12126 F: drivers/extcon/extcon-intel-mrfld.c
+3 -3
arch/x86/pci/Makefile
··· 8 8 obj-$(CONFIG_PCI_XEN) += xen.o 9 9 10 10 obj-y += fixup.o 11 - obj-$(CONFIG_X86_INTEL_CE) += ce4100.o 12 11 obj-$(CONFIG_ACPI) += acpi.o 13 12 obj-y += legacy.o irq.o 14 13 15 - obj-$(CONFIG_X86_NUMACHIP) += numachip.o 14 + obj-$(CONFIG_X86_INTEL_CE) += ce4100.o 15 + obj-$(CONFIG_X86_INTEL_MID) += intel_mid.o 16 16 17 - obj-$(CONFIG_X86_INTEL_MID) += intel_mid_pci.o 17 + obj-$(CONFIG_X86_NUMACHIP) += numachip.o 18 18 19 19 obj-y += common.o early.o 20 20 obj-y += bus_numa.o
arch/x86/pci/intel_mid_pci.c arch/x86/pci/intel_mid.c