/* SPDX-License-Identifier: GPL-2.0-or-later */1/*2* Copyright Samuel Mendoza-Jonas, IBM Corporation 2018.3*/45#ifndef __NCSI_NETLINK_H__6#define __NCSI_NETLINK_H__78#include <linux/netdevice.h>910#include "internal.h"1112int ncsi_send_netlink_rsp(struct ncsi_request *nr,13struct ncsi_package *np,14struct ncsi_channel *nc);15int ncsi_send_netlink_timeout(struct ncsi_request *nr,16struct ncsi_package *np,17struct ncsi_channel *nc);18int ncsi_send_netlink_err(struct net_device *dev,19u32 snd_seq,20u32 snd_portid,21const struct nlmsghdr *nlhdr,22int err);2324#endif /* __NCSI_NETLINK_H__ */252627