~ubuntu-branches/ubuntu/saucy/linux-ti-omap4/saucy-proposed

« back to all changes in this revision

Viewing changes to drivers/net/wireless/mwifiex/decl.h

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati, Stefan Bader, Upstream Kernel Changes
  • Date: 2012-08-15 17:17:43 UTC
  • Revision ID: package-import@ubuntu.com-20120815171743-h5wnuf51xe7pvdid
Tags: 3.5.0-207.13
[ Paolo Pisati ]

* Start new release

[ Stefan Bader ]

* (config) Enable getabis to use local package copies

[ Upstream Kernel Changes ]

* fixup: gargabe collect iva_seq[0|1] init
* [Config] enable all SND_OMAP_SOC_*s
* fixup: cm2xxx_3xxx.o is needed for omap2_cm_read|write_reg
* fixup: add some snd_soc_dai* helper functions
* fixup: s/snd_soc_dpcm_params/snd_soc_dpcm/g
* fixup: typo, no_host_mode and useless SDP4430 init
* fixup: enable again aess hwmod

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include <linux/ieee80211.h>
29
29
 
30
30
 
31
 
#define MWIFIEX_MAX_BSS_NUM         (1)
 
31
#define MWIFIEX_MAX_BSS_NUM         (2)
32
32
 
33
33
#define MWIFIEX_MIN_DATA_HEADER_LEN 36  /* sizeof(mwifiex_txpd)
34
34
                                         *   + 4 byte alignment
53
53
#define MWIFIEX_RATE_BITMAP_MCS127 159
54
54
 
55
55
#define MWIFIEX_RX_DATA_BUF_SIZE     (4 * 1024)
 
56
#define MWIFIEX_RX_CMD_BUF_SIZE      (2 * 1024)
 
57
 
 
58
#define MAX_BEACON_PERIOD                  (4000)
 
59
#define MIN_BEACON_PERIOD                  (50)
 
60
#define MAX_DTIM_PERIOD                    (100)
 
61
#define MIN_DTIM_PERIOD                    (1)
56
62
 
57
63
#define MWIFIEX_RTS_MIN_VALUE              (0)
58
64
#define MWIFIEX_RTS_MAX_VALUE              (2347)
59
65
#define MWIFIEX_FRAG_MIN_VALUE             (256)
60
66
#define MWIFIEX_FRAG_MAX_VALUE             (2346)
61
67
 
 
68
#define MWIFIEX_RETRY_LIMIT                14
62
69
#define MWIFIEX_SDIO_BLOCK_SIZE            256
63
70
 
64
71
#define MWIFIEX_BUF_FLAG_REQUEUED_PKT      BIT(0)
91
98
        u32 fw_len;
92
99
};
93
100
 
 
101
struct mwifiex_802_11_ssid {
 
102
        u32 ssid_len;
 
103
        u8 ssid[IEEE80211_MAX_SSID_LEN];
 
104
};
 
105
 
94
106
struct mwifiex_wait_queue {
95
107
        wait_queue_head_t wait;
96
108
        int status;