diff options
author | Sudeep Dutt <sudeep.dutt@intel.com> | 2015-04-29 05:32:35 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-05-24 12:13:36 -0700 |
commit | e9089f43c9a79fe97e242de8b5530eceeb5ae8b5 (patch) | |
tree | ddb7809de2ea3774576ad05edd622810f1bd0319 /drivers/misc/mic/scif/Makefile | |
parent | 40cb59428c842e6f14be1fe0cb8cfa295080c2e5 (diff) | |
download | talos-op-linux-e9089f43c9a79fe97e242de8b5530eceeb5ae8b5.tar.gz talos-op-linux-e9089f43c9a79fe97e242de8b5530eceeb5ae8b5.zip |
misc: mic: SCIF open close bind and listen APIs
SCIF character device file operations and kernel APIs for opening and
closing a user and kernel mode SCIF endpoint. This patch also enables
binding to a SCIF port and listening for incoming SCIF connections.
Reviewed-by: Nikhil Rao <nikhil.rao@intel.com>
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>
Diffstat (limited to 'drivers/misc/mic/scif/Makefile')
-rw-r--r-- | drivers/misc/mic/scif/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/misc/mic/scif/Makefile b/drivers/misc/mic/scif/Makefile new file mode 100644 index 000000000000..bf10bb7e2b91 --- /dev/null +++ b/drivers/misc/mic/scif/Makefile @@ -0,0 +1,15 @@ +# +# Makefile - SCIF driver. +# Copyright(c) 2014, Intel Corporation. +# +obj-$(CONFIG_SCIF) += scif.o +scif-objs := scif_main.o +scif-objs += scif_peer_bus.o +scif-objs += scif_ports.o +scif-objs += scif_debugfs.o +scif-objs += scif_fd.o +scif-objs += scif_api.o +scif-objs += scif_epd.o +scif-objs += scif_rb.o +scif-objs += scif_nodeqp.o +scif-objs += scif_nm.o |