~computersforpeace/ubuntu/utopic/bcmwl/fix-for-1358966

« back to all changes in this revision

Viewing changes to src/src/wl/sys/wlc_types.h

  • Committer: Package Import Robot
  • Author(s): Alberto Milone
  • Date: 2012-12-11 17:06:22 UTC
  • mfrom: (2.1.6)
  • Revision ID: package-import@ubuntu.com-20121211170622-7bd9yp2wm1plhhu1
Tags: 6.20.155.1+bdcom-0ubuntu1
* New upstream release (LP: #923809):
  - Added 43142 support.
  - Added 4331 support.
* debian/control:
  - depend on the different flavours of the linux-headers.
* Refresh 0002-Makefile.patch and 0001-MODULE_LICENSE.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * Forward declarations for commonly used wl driver structs
3
3
 *
4
 
 * Copyright (C) 2010, Broadcom Corporation
5
 
 * All Rights Reserved.
6
 
 * 
7
 
 * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
8
 
 * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
9
 
 * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
10
 
 * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
 
4
 * Copyright (C) 2011, Broadcom Corporation. All Rights Reserved.
 
5
 * 
 
6
 * Permission to use, copy, modify, and/or distribute this software for any
 
7
 * purpose with or without fee is hereby granted, provided that the above
 
8
 * copyright notice and this permission notice appear in all copies.
 
9
 * 
 
10
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 
11
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 
12
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
 
13
 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 
14
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
 
15
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 
16
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
11
17
 *
12
 
 * $Id: wlc_types.h,v 1.7.10.3 2010-04-23 18:02:20 Exp $
 
18
 * $Id: wlc_types.h 266255 2011-06-13 20:18:59Z $
13
19
 */
14
20
 
15
21
#ifndef _wlc_types_h_
16
22
#define _wlc_types_h_
17
23
 
18
24
typedef struct wlc_info wlc_info_t;
19
 
typedef struct wlc_hw_info wlc_hw_info_t;
20
25
typedef struct wlc_if wlc_if_t;
21
26
typedef struct wl_if wl_if_t;
22
27
typedef struct led_info led_info_t;
40
45
typedef struct wlc_ap_info wlc_ap_info_t;
41
46
typedef struct wlc_scan_info wlc_scan_info_t;
42
47
typedef struct dpt_info dpt_info_t;
 
48
typedef struct tdls_info tdls_info_t;
43
49
typedef struct wlc_auth_info wlc_auth_info_t;
44
 
#ifdef WLBDD
45
 
typedef struct bdd_info bdd_info_t;
46
 
#endif
47
 
#ifdef WLP2P
48
 
typedef struct p2p_info p2p_info_t;
49
 
#endif
50
 
#ifdef WLMCHAN
51
 
typedef struct mchan_info mchan_info_t;
52
 
typedef struct wlc_mchan_context wlc_mchan_context_t;
53
 
#endif
54
50
typedef struct wowl_info wowl_info_t;
55
51
typedef struct wlc_plt_info wlc_plt_pub_t;
56
52
typedef struct supplicant supplicant_t;
58
54
typedef struct antsel_info antsel_info_t;
59
55
typedef struct lmac_info lmac_info_t;
60
56
typedef struct bmac_pmq bmac_pmq_t;
61
 
#ifdef WMF
62
 
typedef struct wlc_wmf_instance wlc_wmf_instance_t;
63
 
typedef struct wmf_info wmf_info_t;
64
 
#endif
65
57
typedef struct wlc_rrm_info wlc_rrm_info_t;
66
58
typedef struct rm_info rm_info_t;
67
59
 
72
64
typedef const struct hnddma_pub hnddma_t;
73
65
#endif 
74
66
 
 
67
typedef struct wlc_dpc_info wlc_dpc_info_t;
 
68
 
 
69
typedef struct wlc_11h_info wlc_11h_info_t;
 
70
typedef struct wlc_tpc_info wlc_tpc_info_t;
 
71
typedef struct wlc_csa_info wlc_csa_info_t;
 
72
typedef struct wlc_quiet_info wlc_quiet_info_t;
 
73
 
 
74
typedef struct wlc_11d_info wlc_11d_info_t;
 
75
typedef struct wlc_cntry_info wlc_cntry_info_t;
 
76
 
 
77
typedef struct wlc_dfs_info wlc_dfs_info_t;
 
78
 
 
79
typedef struct bsscfg_module bsscfg_module_t;
 
80
 
75
81
#endif