summaryrefslogtreecommitdiff
path: root/net/ncsi/Makefile
diff options
context:
space:
mode:
authorGavin Shan <gwshan@linux.vnet.ibm.com>2016-07-19 11:54:17 +1000
committerDavid S. Miller <davem@davemloft.net>2016-07-19 20:49:16 -0700
commit6389eaa7fa9c3ee6c7d39f6087b86660d17236ac (patch)
tree5c915baea8427248f016c7c4630852ee37e3f538 /net/ncsi/Makefile
parent2d283bdd079c0ad4da020bbc9e9c2a4280823098 (diff)
net/ncsi: NCSI command packet handler
The NCSI command packets are sent from MC (Management Controller) to remote end. They are used for multiple purposes: probe existing NCSI package/channel, retrieve NCSI channel's capability, configure NCSI channel etc. This defines struct to represent NCSI command packets and introduces function ncsi_xmit_cmd(), which will be used to transmit NCSI command packet according to the request. The request is represented by struct ncsi_cmd_arg. Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Acked-by: Joel Stanley <joel@jms.id.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ncsi/Makefile')
-rw-r--r--net/ncsi/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ncsi/Makefile b/net/ncsi/Makefile
index 07b5625155d7..abc404631ca8 100644
--- a/net/ncsi/Makefile
+++ b/net/ncsi/Makefile
@@ -1,4 +1,4 @@
#
# Makefile for NCSI API
#
-obj-$(CONFIG_NET_NCSI) += ncsi-manage.o
+obj-$(CONFIG_NET_NCSI) += ncsi-cmd.o ncsi-manage.o