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