xref: /wlan-dirver/platform/cnss2/genl.h (revision 5b29459b17821e3d9b1e6fcc7bd0a69222e90f53)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* Copyright (c) 2019-2020, The Linux Foundation. All rights reserved. */
3 
4 #ifndef __CNSS_GENL_H__
5 #define __CNSS_GENL_H__
6 
7 enum cnss_genl_msg_type {
8 	CNSS_GENL_MSG_TYPE_UNSPEC,
9 	CNSS_GENL_MSG_TYPE_QDSS,
10 };
11 
12 int cnss_genl_init(void);
13 void cnss_genl_exit(void);
14 int cnss_genl_send_msg(void *buff, u8 type,
15 		       char *file_name, u32 total_size);
16 
17 #endif
18