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

« back to all changes in this revision

Viewing changes to drivers/staging/rtl8712/rtl871x_ioctl_set.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:
6
6
typedef u8 NDIS_802_11_PMKID_VALUE[16];
7
7
 
8
8
struct BSSIDInfo {
9
 
        unsigned char  BSSID[6];
10
 
        NDIS_802_11_PMKID_VALUE  PMKID;
 
9
        unsigned char BSSID[6];
 
10
        NDIS_802_11_PMKID_VALUE PMKID;
11
11
};
12
12
 
13
13
u8 r8712_set_802_11_authentication_mode(struct _adapter *pdapter,
14
14
                        enum NDIS_802_11_AUTHENTICATION_MODE authmode);
 
15
 
15
16
u8 r8712_set_802_11_bssid(struct _adapter *padapter, u8 *bssid);
16
 
u8 r8712_set_802_11_add_wep(struct _adapter *padapter, struct NDIS_802_11_WEP *wep);
 
17
 
 
18
u8 r8712_set_802_11_add_wep(struct _adapter *padapter,
 
19
                            struct NDIS_802_11_WEP *wep);
 
20
 
17
21
u8 r8712_set_802_11_disassociate(struct _adapter *padapter);
 
22
 
18
23
u8 r8712_set_802_11_bssid_list_scan(struct _adapter *padapter);
 
24
 
19
25
u8 r8712_set_802_11_infrastructure_mode(struct _adapter *padapter,
20
26
                        enum NDIS_802_11_NETWORK_INFRASTRUCTURE networktype);
21
 
void r8712_set_802_11_ssid(struct _adapter *padapter, struct ndis_802_11_ssid *ssid);
 
27
 
 
28
void r8712_set_802_11_ssid(struct _adapter *padapter,
 
29
                           struct ndis_802_11_ssid *ssid);
22
30
 
23
31
#endif
24
32