~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to drivers/staging/brcm80211/include/bcmdefs.h

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
#define AUTO    (-1)            /* Auto = -1 */
38
38
 
39
 
#ifdef mips
40
 
#define BCMFASTPATH             __attribute__ ((__section__(".text.fastpath")))
41
 
#else
42
 
#define BCMFASTPATH
43
 
#endif
44
 
 
45
39
/* Bus types */
46
40
#define SI_BUS                  0       /* SOC Interconnect */
47
41
#define PCI_BUS                 1       /* PCI target */
114
108
 
115
109
#define BCMEXTRAHDROOM 172
116
110
 
117
 
#ifdef BCMDBG
118
 
#ifndef BCMDBG_ASSERT
119
 
#define BCMDBG_ASSERT
120
 
#endif  /* BCMDBG_ASSERT */
121
 
#endif  /* BCMDBG */
122
 
 
123
111
/* Macros for doing definition and get/set of bitfields
124
112
 * Usage example, e.g. a three-bit field (bits 4-6):
125
113
 *    #define <NAME>_M  BITFIELD_MASK(3)