Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235780
b: refs/heads/master
c: c353f4b
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and Greg Kroah-Hartman committed Feb 2, 2011
1 parent 45b1070 commit 75db4c9
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 48 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e1ce2a3afe041c36ae397abf73f8059eb599e36e
refs/heads/master: c353f4b397982e210b890c1f1a246611ba222b92
2 changes: 1 addition & 1 deletion trunk/drivers/staging/ath6kl/include/common/a_hci.h
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ typedef struct hci_cmd_read_local_amp_assoc_t {
typedef struct hci_cmd_set_event_mask_t {
u16 opcode;
u8 param_length;
A_UINT64 mask;
u64 mask;
}POSTPACK HCI_CMD_SET_EVT_MASK, HCI_CMD_SET_EVT_MASK_PG_2;


Expand Down
92 changes: 46 additions & 46 deletions trunk/drivers/staging/ath6kl/os/linux/include/athdrv_linux.h
Original file line number Diff line number Diff line change
Expand Up @@ -1014,52 +1014,52 @@ struct ar6000_queuereq {

/* used by AR6000_IOCTL_WMI_GET_TARGET_STATS */
typedef struct targetStats_t {
A_UINT64 tx_packets;
A_UINT64 tx_bytes;
A_UINT64 tx_unicast_pkts;
A_UINT64 tx_unicast_bytes;
A_UINT64 tx_multicast_pkts;
A_UINT64 tx_multicast_bytes;
A_UINT64 tx_broadcast_pkts;
A_UINT64 tx_broadcast_bytes;
A_UINT64 tx_rts_success_cnt;
A_UINT64 tx_packet_per_ac[4];

A_UINT64 tx_errors;
A_UINT64 tx_failed_cnt;
A_UINT64 tx_retry_cnt;
A_UINT64 tx_mult_retry_cnt;
A_UINT64 tx_rts_fail_cnt;

A_UINT64 rx_packets;
A_UINT64 rx_bytes;
A_UINT64 rx_unicast_pkts;
A_UINT64 rx_unicast_bytes;
A_UINT64 rx_multicast_pkts;
A_UINT64 rx_multicast_bytes;
A_UINT64 rx_broadcast_pkts;
A_UINT64 rx_broadcast_bytes;
A_UINT64 rx_fragment_pkt;

A_UINT64 rx_errors;
A_UINT64 rx_crcerr;
A_UINT64 rx_key_cache_miss;
A_UINT64 rx_decrypt_err;
A_UINT64 rx_duplicate_frames;

A_UINT64 tkip_local_mic_failure;
A_UINT64 tkip_counter_measures_invoked;
A_UINT64 tkip_replays;
A_UINT64 tkip_format_errors;
A_UINT64 ccmp_format_errors;
A_UINT64 ccmp_replays;

A_UINT64 power_save_failure_cnt;

A_UINT64 cs_bmiss_cnt;
A_UINT64 cs_lowRssi_cnt;
A_UINT64 cs_connect_cnt;
A_UINT64 cs_disconnect_cnt;
u64 tx_packets;
u64 tx_bytes;
u64 tx_unicast_pkts;
u64 tx_unicast_bytes;
u64 tx_multicast_pkts;
u64 tx_multicast_bytes;
u64 tx_broadcast_pkts;
u64 tx_broadcast_bytes;
u64 tx_rts_success_cnt;
u64 tx_packet_per_ac[4];

u64 tx_errors;
u64 tx_failed_cnt;
u64 tx_retry_cnt;
u64 tx_mult_retry_cnt;
u64 tx_rts_fail_cnt;

u64 rx_packets;
u64 rx_bytes;
u64 rx_unicast_pkts;
u64 rx_unicast_bytes;
u64 rx_multicast_pkts;
u64 rx_multicast_bytes;
u64 rx_broadcast_pkts;
u64 rx_broadcast_bytes;
u64 rx_fragment_pkt;

u64 rx_errors;
u64 rx_crcerr;
u64 rx_key_cache_miss;
u64 rx_decrypt_err;
u64 rx_duplicate_frames;

u64 tkip_local_mic_failure;
u64 tkip_counter_measures_invoked;
u64 tkip_replays;
u64 tkip_format_errors;
u64 ccmp_format_errors;
u64 ccmp_replays;

u64 power_save_failure_cnt;

u64 cs_bmiss_cnt;
u64 cs_lowRssi_cnt;
u64 cs_connect_cnt;
u64 cs_disconnect_cnt;

A_INT32 tx_unicast_rate;
A_INT32 rx_unicast_rate;
Expand Down

0 comments on commit 75db4c9

Please sign in to comment.