mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-04 04:04:19 +00:00
2b0b16d329
This patch adds basic support for PCI-based Intel TH devices. It requests 2 bars (configuration registers for the subdevices and STH channel MMIO region) and calls into Intel TH core code to create the bus with subdevices etc. Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7 lines
178 B
Makefile
7 lines
178 B
Makefile
obj-$(CONFIG_INTEL_TH) += intel_th.o
|
|
intel_th-y := core.o
|
|
intel_th-$(CONFIG_INTEL_TH_DEBUG) += debug.o
|
|
|
|
obj-$(CONFIG_INTEL_TH_PCI) += intel_th_pci.o
|
|
intel_th_pci-y := pci.o
|