diff options
author | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2018-03-05 11:39:05 +1100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-05 10:43:37 -0500 |
commit | 955dc68cb9b23b42999cafe6df3684309bc686c6 (patch) | |
tree | b357c2668aba700e94a7e4a3a87b61eca62ea66a /net/ncsi/Makefile | |
parent | be631892948060f44b1ceee3132be1266932071e (diff) | |
download | talos-op-linux-955dc68cb9b23b42999cafe6df3684309bc686c6.tar.gz talos-op-linux-955dc68cb9b23b42999cafe6df3684309bc686c6.zip |
net/ncsi: Add generic netlink family
Add a generic netlink family for NCSI. This supports three commands;
NCSI_CMD_PKG_INFO which returns information on packages and their
associated channels, NCSI_CMD_SET_INTERFACE which allows a specific
package or package/channel combination to be set as the preferred
choice, and NCSI_CMD_CLEAR_INTERFACE which clears any preferred setting.
Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ncsi/Makefile')
-rw-r--r-- | net/ncsi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ncsi/Makefile b/net/ncsi/Makefile index dd12b564f2e7..436ef68331f2 100644 --- a/net/ncsi/Makefile +++ b/net/ncsi/Makefile @@ -1,4 +1,4 @@ # # Makefile for NCSI API # -obj-$(CONFIG_NET_NCSI) += ncsi-cmd.o ncsi-rsp.o ncsi-aen.o ncsi-manage.o +obj-$(CONFIG_NET_NCSI) += ncsi-cmd.o ncsi-rsp.o ncsi-aen.o ncsi-manage.o ncsi-netlink.o |