summaryrefslogtreecommitdiffhomepage
path: root/libs/iwinfo/src/include/broadcom.h
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-10-12 05:19:10 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-10-12 05:19:10 +0000
commit719fd249aa6a3bbcb4efd3c130e92741cd1a4852 (patch)
tree5ef1cb56cf3b6ca5820d6dcc21ea5f4de26d6bc3 /libs/iwinfo/src/include/broadcom.h
parentaff68f53751c706dd623eb794106eab59991e69d (diff)
libs: remove obsolete iwinfo, its independant now
Diffstat (limited to 'libs/iwinfo/src/include/broadcom.h')
-rw-r--r--libs/iwinfo/src/include/broadcom.h93
1 files changed, 0 insertions, 93 deletions
diff --git a/libs/iwinfo/src/include/broadcom.h b/libs/iwinfo/src/include/broadcom.h
deleted file mode 100644
index ae7ae531dc..0000000000
--- a/libs/iwinfo/src/include/broadcom.h
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Custom OID/ioctl definitions for
- * Broadcom 802.11abg Networking Device Driver
- *
- * Definitions subject to change without notice.
- *
- * Copyright 2006, Broadcom Corporation
- * All Rights Reserved.
- *
- * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
- * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
- * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
- *
- */
-
-#ifndef _BROADCOM_H
-#define _BROADCOM_H
-
-#define WL_MCSSET_LEN 16
-#define WL_MAX_STA_COUNT 32
-
-#define WL_BSS_RSSI_OFFSET 82
-#define WL_BSS_NOISE_OFFSET 84
-
-#define WLC_IOCTL_MAGIC 0x14e46c77
-#define WLC_IOCTL_MAXLEN 8192
-
-#define WLC_GET_MAGIC 0
-#define WLC_GET_RATE 12
-#define WLC_GET_INFRA 19
-#define WLC_GET_BSSID 23
-#define WLC_GET_SSID 25
-#define WLC_GET_CHANNEL 29
-#define WLC_GET_PASSIVE 48
-#define WLC_GET_REVINFO 98
-#define WLC_GET_AP 117
-#define WLC_GET_RSSI 127
-#define WLC_GET_WSEC 133
-#define WLC_GET_PHY_NOISE 135
-#define WLC_GET_BSS_INFO 136
-#define WLC_GET_ASSOCLIST 159
-#define WLC_GET_WPA_AUTH 164
-#define WLC_GET_VAR 262
-
-
-struct wl_ether_addr {
- uint8_t octet[6];
-};
-
-struct wl_maclist {
- uint count;
- struct wl_ether_addr ea[1];
-};
-
-typedef struct wl_sta_rssi {
- int rssi;
- char mac[6];
- uint16_t foo;
-} wl_sta_rssi_t;
-
-typedef struct wlc_ssid {
- uint32_t ssid_len;
- unsigned char ssid[32];
-} wlc_ssid_t;
-
-/* Linux network driver ioctl encoding */
-typedef struct wl_ioctl {
- uint32_t cmd; /* common ioctl definition */
- void *buf; /* pointer to user buffer */
- uint32_t len; /* length of user buffer */
- uint8_t set; /* get or set request (optional) */
- uint32_t used; /* bytes read or written (optional) */
- uint32_t needed; /* bytes needed (optional) */
-} wl_ioctl_t;
-
-/* Revision info */
-typedef struct wlc_rev_info {
- uint vendorid; /* PCI vendor id */
- uint deviceid; /* device id of chip */
- uint radiorev; /* radio revision */
- uint chiprev; /* chip revision */
- uint corerev; /* core revision */
- uint boardid; /* board identifier (usu. PCI sub-device id) */
- uint boardvendor; /* board vendor (usu. PCI sub-vendor id) */
- uint boardrev; /* board revision */
- uint driverrev; /* driver version */
- uint ucoderev; /* microcode version */
- uint bus; /* bus type */
- uint chipnum; /* chip number */
-} wlc_rev_info_t;
-
-#endif