aboutsummaryrefslogtreecommitdiffstats
path: root/package/wlcompat/src/include/wlutils.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-11-10 19:00:53 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-11-10 19:00:53 +0000
commit2ab260e917ee2ffa4d215aac2c7be093d48f76d2 (patch)
treea26d476a214d27594df0180d204337fbd9f067a0 /package/wlcompat/src/include/wlutils.h
parent4db640a50331fff2b661a4109b430ad056ccbcdc (diff)
downloadupstream-2ab260e917ee2ffa4d215aac2c7be093d48f76d2.tar.gz
upstream-2ab260e917ee2ffa4d215aac2c7be093d48f76d2.tar.bz2
upstream-2ab260e917ee2ffa4d215aac2c7be093d48f76d2.zip
move wlcompat to the broadcom-wl package
SVN-Revision: 9528
Diffstat (limited to 'package/wlcompat/src/include/wlutils.h')
-rw-r--r--package/wlcompat/src/include/wlutils.h102
1 files changed, 0 insertions, 102 deletions
diff --git a/package/wlcompat/src/include/wlutils.h b/package/wlcompat/src/include/wlutils.h
deleted file mode 100644
index 898fb29fb7..0000000000
--- a/package/wlcompat/src/include/wlutils.h
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * Broadcom wireless network adapter utility functions
- *
- * 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.
- *
- * $Id$
- */
-
-#ifndef _wlutils_h_
-#define _wlutils_h_
-
-#include <typedefs.h>
-#include <wlioctl.h>
-
-/*
- * Pass a wlioctl request to the specified interface.
- * @param name interface name
- * @param cmd WLC_GET_MAGIC <= cmd < WLC_LAST
- * @param buf buffer for passing in and/or receiving data
- * @param len length of buf
- * @return >= 0 if successful or < 0 otherwise
- */
-extern int wl_ioctl(char *name, int cmd, void *buf, int len);
-
-/*
- * Probe the specified interface.
- * @param name interface name
- * @return >= 0 if a Broadcom wireless device or < 0 otherwise
- */
-extern int wl_probe(char *name);
-
-extern int wl_iovar_set(char *ifname, char *iovar, void *param, int paramlen);
-extern int wl_iovar_get(char *ifname, char *iovar, void *bufptr, int buflen);
-/*
- * Set/Get named variable.
- * @param ifname interface name
- * @param iovar variable name
- * @param param input param value/buffer
- * @param paramlen input param value/buffer length
- * @param bufptr io buffer
- * @param buflen io buffer length
- * @param val val or val pointer for int routines
- * @return success == 0, failure != 0
- */
-/*
- * set named driver variable to int value
- * calling example: wl_iovar_setint(ifname, "arate", rate)
-*/
-static inline int
-wl_iovar_setint(char *ifname, char *iovar, int val)
-{
- return wl_iovar_set(ifname, iovar, &val, sizeof(val));
-}
-
-/*
- * get named driver variable to int value and return error indication
- * calling example: wl_iovar_getint(ifname, "arate", &rate)
- */
-static inline int
-wl_iovar_getint(char *ifname, char *iovar, int *val)
-{
- return wl_iovar_get(ifname, iovar, val, sizeof(int));
-}
-
-/*
- * Set/Get named variable indexed by BSS Configuration
- * @param ifname interface name
- * @param iovar variable name
- * @param bssidx bsscfg index
- * @param param input param value/buffer
- * @param paramlen input param value/buffer length
- * @param bufptr io buffer
- * @param buflen io buffer length
- * @param val val or val pointer for int routines
- * @return success == 0, failure != 0
- */
-extern int wl_bssiovar_get(char *ifname, char *iovar, int bssidx, void *outbuf, int len);
-extern int wl_bssiovar_set(char *ifname, char *iovar, int bssidx, void *param, int paramlen);
-/*
- * set named & bss indexed driver variable to int value
- */
-static inline int
-wl_bssiovar_setint(char *ifname, char *iovar, int bssidx, int val)
-{
- return wl_bssiovar_set(ifname, iovar, bssidx, &val, sizeof(int));
-}
-
-static inline int
-wl_bssiovar_getint(char *ifname, char *iovar, int bssidx, int *val)
-{
- return wl_bssiovar_get(ifname, iovar, bssidx, val, sizeof(int));
-}
-
-extern int wl_bssiovar_setint(char *ifname, char *iovar, int bssidx, int val);
-
-#endif /* _wlutils_h_ */