forked from Freescale/linux-fslc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> Reviewed-by: Ashutosh Dixit <[email protected]> Signed-off-by: Sudeep Dutt <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information
1 parent
40cb594
commit e9089f4
Showing
10 changed files
with
933 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Oops, something went wrong.