Contributors: 7
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Glen Lee |
76 |
56.72% |
6 |
37.50% |
Johnny Kim |
37 |
27.61% |
1 |
6.25% |
Bhumika Goyal |
8 |
5.97% |
1 |
6.25% |
Chaehyun Lim |
6 |
4.48% |
3 |
18.75% |
Leo Kim |
3 |
2.24% |
2 |
12.50% |
Ajay Singh |
3 |
2.24% |
2 |
12.50% |
Greg Kroah-Hartman |
1 |
0.75% |
1 |
6.25% |
Total |
134 |
|
16 |
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2012 - 2018 Microchip Technology Inc., and its subsidiaries.
* All rights reserved.
*/
#ifndef WILC_WLAN_CFG_H
#define WILC_WLAN_CFG_H
struct wilc_cfg_byte {
u16 id;
u16 val;
};
struct wilc_cfg_hword {
u16 id;
u16 val;
};
struct wilc_cfg_word {
u16 id;
u32 val;
};
struct wilc_cfg_str {
u16 id;
u8 *str;
};
struct wilc;
int wilc_wlan_cfg_set_wid(u8 *frame, u32 offset, u16 id, u8 *buf, int size);
int wilc_wlan_cfg_get_wid(u8 *frame, u32 offset, u16 id);
int wilc_wlan_cfg_get_wid_value(u16 wid, u8 *buffer, u32 buffer_size);
int wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
struct wilc_cfg_rsp *rsp);
int wilc_wlan_cfg_init(void);
#endif