Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219942
b: refs/heads/master
c: 3c09386
h: refs/heads/master
v: v3
  • Loading branch information
Pekka Enberg authored and Greg Kroah-Hartman committed Sep 21, 2010
1 parent d1e5e29 commit 07396c9
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 46 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f2e497e3e905f60f44eb475b527cc0e443ce4d0b
refs/heads/master: 3c093865aecc7addd34a56b5cf4b2ee9223d9b2d
35 changes: 34 additions & 1 deletion trunk/drivers/staging/winbond/core.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,45 @@
#ifndef __WINBOND_CORE_H
#define __WINBOND_CORE_H

#include <linux/spinlock.h>
#include <linux/wireless.h>
#include <linux/types.h>

#include "mlme_s.h"
#include "wbhal_s.h"
#include "mto.h"

#include "mac_structures.h"
#include "mds_s.h"

#define MAX_NUM_TX_MMPDU 2
#define MAX_MMPDU_SIZE 1512
#define MAX_NUM_RX_MMPDU 6

struct mlme_frame {
s8 *pMMPDU;
u16 len;
u8 DataType;
u8 IsInUsed;

spinlock_t MLMESpinLock;

u8 TxMMPDU[MAX_NUM_TX_MMPDU][MAX_MMPDU_SIZE];
u8 TxMMPDUInUse[(MAX_NUM_TX_MMPDU + 3) & ~0x03];

u16 wNumTxMMPDU;
u16 wNumTxMMPDUDiscarded;

u8 RxMMPDU[MAX_NUM_RX_MMPDU][MAX_MMPDU_SIZE];
u8 SaveRxBufSlotInUse[(MAX_NUM_RX_MMPDU + 3) & ~0x03];

u16 wNumRxMMPDU;
u16 wNumRxMMPDUDiscarded;

u16 wNumRxMMPDUInMLME; /* Number of the Rx MMPDU */
u16 reserved_1; /* in MLME. */
/* excluding the discarded */
};

#define WBLINUX_PACKET_ARRAY_SIZE (ETHERNET_TX_DESCRIPTORS*4)

#define WB_MAX_LINK_NAME_LEN 40
Expand Down
44 changes: 0 additions & 44 deletions trunk/drivers/staging/winbond/mlme_s.h

This file was deleted.

0 comments on commit 07396c9

Please sign in to comment.