8810df3776
This patch moves the virtio specific debugfs hooks previously in mic_debugfs.c in the MIC host driver into the VOP driver. The Kconfig/Makefile is also updated to allow building the VOP driver. Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Signed-off-by: Sudeep Dutt <sudeep.dutt@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12 lines
296 B
Makefile
12 lines
296 B
Makefile
#
|
|
# Makefile - Intel MIC Linux driver.
|
|
# Copyright(c) 2013, Intel Corporation.
|
|
#
|
|
obj-$(CONFIG_INTEL_MIC_HOST) += host/
|
|
obj-$(CONFIG_INTEL_MIC_CARD) += card/
|
|
obj-y += bus/
|
|
obj-$(CONFIG_SCIF) += scif/
|
|
obj-$(CONFIG_MIC_COSM) += cosm/
|
|
obj-$(CONFIG_MIC_COSM) += cosm_client/
|
|
obj-$(CONFIG_VOP) += vop/
|