common.h (e5451c8f8330e03ad3cfa16048b4daf961af434f) | common.h (3152a974678a1e80c3c16d4b86522ecc500be529) |
---|---|
1/* 2 * Copyright (c) 2010-2011 Atheros Communications Inc. 3 * Copyright (c) 2011-2012 Qualcomm Atheros, Inc. 4 * 5 * Permission to use, copy, modify, and/or distribute this software for any 6 * purpose with or without fee is hereby granted, provided that the above 7 * copyright notice and this permission notice appear in all copies. 8 * --- 53 unchanged lines hidden (view full) --- 62struct ath6kl_llc_snap_hdr { 63 u8 dsap; 64 u8 ssap; 65 u8 cntl; 66 u8 org_code[3]; 67 __be16 eth_type; 68} __packed; 69 | 1/* 2 * Copyright (c) 2010-2011 Atheros Communications Inc. 3 * Copyright (c) 2011-2012 Qualcomm Atheros, Inc. 4 * 5 * Permission to use, copy, modify, and/or distribute this software for any 6 * purpose with or without fee is hereby granted, provided that the above 7 * copyright notice and this permission notice appear in all copies. 8 * --- 53 unchanged lines hidden (view full) --- 62struct ath6kl_llc_snap_hdr { 63 u8 dsap; 64 u8 ssap; 65 u8 cntl; 66 u8 org_code[3]; 67 __be16 eth_type; 68} __packed; 69 |
70enum crypto_type { | 70enum ath6kl_crypto_type { |
71 NONE_CRYPT = 0x01, 72 WEP_CRYPT = 0x02, 73 TKIP_CRYPT = 0x04, 74 AES_CRYPT = 0x08, 75 WAPI_CRYPT = 0x10, 76}; 77 78struct htc_endpoint_credit_dist; 79struct ath6kl; 80struct ath6kl_htcap; 81enum htc_credit_dist_reason; 82struct ath6kl_htc_credit_info; 83 84struct sk_buff *ath6kl_buf_alloc(int size); 85#endif /* COMMON_H */ | 71 NONE_CRYPT = 0x01, 72 WEP_CRYPT = 0x02, 73 TKIP_CRYPT = 0x04, 74 AES_CRYPT = 0x08, 75 WAPI_CRYPT = 0x10, 76}; 77 78struct htc_endpoint_credit_dist; 79struct ath6kl; 80struct ath6kl_htcap; 81enum htc_credit_dist_reason; 82struct ath6kl_htc_credit_info; 83 84struct sk_buff *ath6kl_buf_alloc(int size); 85#endif /* COMMON_H */ |