
Bring ICNSS family drivers from msm-5.10 kernel as of commit 'cb298739ee51 ("icnss2: Download bdf file for helium targets")' to WLAN platform project. Updated wlan_firmware_service files and makefiles to support ICNSS2 compilation. Change-Id: I02cf792b61772f07ac0607be7bb6b3bfda7815e4
18 linhas
402 B
C
18 linhas
402 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright (c) 2019-2020, The Linux Foundation. All rights reserved. */
|
|
|
|
#ifndef __ICNSS_GENL_H__
|
|
#define __ICNSS_GENL_H__
|
|
|
|
enum icnss_genl_msg_type {
|
|
ICNSS_GENL_MSG_TYPE_UNSPEC,
|
|
ICNSS_GENL_MSG_TYPE_QDSS,
|
|
};
|
|
|
|
int icnss_genl_init(void);
|
|
void icnss_genl_exit(void);
|
|
int icnss_genl_send_msg(void *buff, u8 type,
|
|
char *file_name, u32 total_size);
|
|
|
|
#endif
|