genl.h 402 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2019-2020, The Linux Foundation. All rights reserved. */
  3. #ifndef __ICNSS_GENL_H__
  4. #define __ICNSS_GENL_H__
  5. enum icnss_genl_msg_type {
  6. ICNSS_GENL_MSG_TYPE_UNSPEC,
  7. ICNSS_GENL_MSG_TYPE_QDSS,
  8. };
  9. int icnss_genl_init(void);
  10. void icnss_genl_exit(void);
  11. int icnss_genl_send_msg(void *buff, u8 type,
  12. char *file_name, u32 total_size);
  13. #endif