1/* SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1) */
2/*
3 *
4 * Macros, constants, types, and funcs for req and ind messages
5 *
6 * Copyright (C) 1999 AbsoluteValue Systems, Inc.  All Rights Reserved.
7 * --------------------------------------------------------------------
8 *
9 * linux-wlan
10 *
11 * --------------------------------------------------------------------
12 *
13 * Inquiries regarding the linux-wlan Open Source project can be
14 * made directly to:
15 *
16 * AbsoluteValue Systems Inc.
17 * info@linux-wlan.com
18 * http://www.linux-wlan.com
19 *
20 * --------------------------------------------------------------------
21 *
22 * Portions of the development of this software were funded by
23 * Intersil Corporation as part of PRISM(R) chipset product development.
24 *
25 * --------------------------------------------------------------------
26 */
27
28#ifndef _P80211MSG_H
29#define _P80211MSG_H
30
31#define WLAN_DEVNAMELEN_MAX	16
32
33struct p80211msg {
34	u32 msgcode;
35	u32 msglen;
36	u8 devname[WLAN_DEVNAMELEN_MAX];
37} __packed;
38
39#endif /* _P80211MSG_H */
40