~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/staging/wlan-ng/p80211hdr.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
        u8 a2[ETH_ALEN];
155
155
        u8 a3[ETH_ALEN];
156
156
        u16 seq;
157
 
} __attribute__ ((packed));
 
157
} __packed;
158
158
 
159
159
struct p80211_hdr_a4 {
160
160
        u16 fc;
164
164
        u8 a3[ETH_ALEN];
165
165
        u16 seq;
166
166
        u8 a4[ETH_ALEN];
167
 
} __attribute__ ((packed));
 
167
} __packed;
168
168
 
169
169
union p80211_hdr {
170
170
        struct p80211_hdr_a3 a3;
171
171
        struct p80211_hdr_a4 a4;
172
 
} __attribute__ ((packed));
 
172
} __packed;
173
173
 
174
174
/* Frame and header length macros */
175
175