
Bring CNSS family drivers from msm-5.10 kernel as of commit cc3bc4b888af (cnss2: Fix a few switch statement fallthrough issues) to WLAN platform project. Fix SPDX-License format for a few files as well. drivers/net/wireless/cnss* -> . include/net/cnss* -> inc/ Above shows how directories and header files are relocated. Change-Id: If8fd40a35c9fdbeb1aa76a8aac5fdb1fc1c7e786
18 satır
400 B
C
18 satır
400 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright (c) 2019-2020, The Linux Foundation. All rights reserved. */
|
|
|
|
#ifndef __CNSS_GENL_H__
|
|
#define __CNSS_GENL_H__
|
|
|
|
enum cnss_genl_msg_type {
|
|
CNSS_GENL_MSG_TYPE_UNSPEC,
|
|
CNSS_GENL_MSG_TYPE_QDSS,
|
|
};
|
|
|
|
int cnss_genl_init(void);
|
|
void cnss_genl_exit(void);
|
|
int cnss_genl_send_msg(void *buff, u8 type,
|
|
char *file_name, u32 total_size);
|
|
|
|
#endif
|