mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
a0f5a63066
In preparation of the endpoint MHI support, let's move the host MHI code to its own "host" directory and adjust the toplevel MHI Kconfig & Makefile. While at it, let's also move the "pci_generic" driver to "host" directory as it is a host MHI controller driver. Reviewed-by: Hemant Kumar <hemantk@codeaurora.org> Reviewed-by: Alex Elder <elder@linaro.org> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Link: https://lore.kernel.org/r/20220301160308.107452-5-manivannan.sadhasivam@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7 lines
198 B
Makefile
7 lines
198 B
Makefile
obj-$(CONFIG_MHI_BUS) += mhi.o
|
|
mhi-y := init.o main.o pm.o boot.o
|
|
mhi-$(CONFIG_MHI_BUS_DEBUG) += debugfs.o
|
|
|
|
obj-$(CONFIG_MHI_BUS_PCI_GENERIC) += mhi_pci_generic.o
|
|
mhi_pci_generic-y += pci_generic.o
|