genl.h 400 B

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