summaryrefslogtreecommitdiff
path: root/cleopatre/devkit/rt5572drv/MODULE/include/vr_ikans.h
diff options
context:
space:
mode:
Diffstat (limited to 'cleopatre/devkit/rt5572drv/MODULE/include/vr_ikans.h')
-rw-r--r--cleopatre/devkit/rt5572drv/MODULE/include/vr_ikans.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/cleopatre/devkit/rt5572drv/MODULE/include/vr_ikans.h b/cleopatre/devkit/rt5572drv/MODULE/include/vr_ikans.h
new file mode 100644
index 0000000000..c5694cb858
--- /dev/null
+++ b/cleopatre/devkit/rt5572drv/MODULE/include/vr_ikans.h
@@ -0,0 +1,59 @@
+/****************************************************************************
+ * Ralink Tech Inc.
+ * 4F, No. 2 Technology 5th Rd.
+ * Science-based Industrial Park
+ * Hsin-chu, Taiwan, R.O.C.
+ * (c) Copyright 2002, Ralink Technology, Inc.
+ *
+ * All rights reserved. Ralink's source code is an unpublished work and the
+ * use of a copyright notice does not imply otherwise. This source code
+ * contains confidential trade secret material of Ralink Tech. Any attemp
+ * or participation in deciphering, decoding, reverse engineering or in any
+ * way altering the source code is stricitly prohibited, unless the prior
+ * written consent of Ralink Technology, Inc. is obtained.
+ ****************************************************************************
+
+ Module Name:
+ vr_ikans.h
+
+ Abstract:
+ Only for IKANOS Vx160 or Vx180 platform.
+
+ Revision History:
+ Who When What
+ -------- ---------- ----------------------------------------------
+ Sample Lin 01-28-2008 Created
+
+ */
+
+#ifndef __VR_IKANS_H__
+#define __VR_IKANS_H__
+
+#ifndef MODULE_IKANOS
+#define IKANOS_EXTERN extern
+#else
+#define IKANOS_EXTERN
+#endif /* MODULE_IKANOS */
+
+#ifdef IKANOS_VX_1X0
+ typedef void (*IkanosWlanTxCbFuncP)(void *, void *);
+
+ struct IKANOS_TX_INFO
+ {
+ struct net_device *netdev;
+ IkanosWlanTxCbFuncP *fp;
+ };
+#endif /* IKANOS_VX_1X0 */
+
+
+IKANOS_EXTERN void VR_IKANOS_FP_Init(UINT8 BssNum, UINT8 *pApMac);
+
+IKANOS_EXTERN INT32 IKANOS_DataFramesTx(struct sk_buff *pSkb,
+ struct net_device *pNetDev);
+
+IKANOS_EXTERN void IKANOS_DataFrameRx(PRTMP_ADAPTER pAd,
+ struct sk_buff *pSkb);
+
+#endif /* __VR_IKANS_H__ */
+
+/* End of vr_ikans.h */