OLD | NEW |
1 /* | 1 /* |
2 * | 2 * |
3 * Copyright (c) 2010 Atheros Communications Inc. | 3 * Copyright (c) 2010 Atheros Communications Inc. |
4 * All rights reserved. | 4 * All rights reserved. |
5 * | 5 * |
6 * | 6 * |
7 // This program is free software; you can redistribute it and/or modify | |
8 // it under the terms of the GNU General Public License version 2 as | |
9 // published by the Free Software Foundation; | |
10 // | 7 // |
11 // Software distributed under the License is distributed on an "AS | 8 // Permission to use, copy, modify, and/or distribute this software for any |
12 // IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | 9 // purpose with or without fee is hereby granted, provided that the above |
13 // implied. See the License for the specific language governing | 10 // copyright notice and this permission notice appear in all copies. |
14 // rights and limitations under the License. | 11 // |
| 12 // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 13 // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 14 // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 15 // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 16 // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 17 // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 18 // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 // | 19 // |
16 // | 20 // |
17 * | 21 * |
18 */ | 22 */ |
19 | 23 |
20 #ifdef ATH_AR6K_11N_SUPPORT | 24 #ifdef ATH_AR6K_11N_SUPPORT |
21 | 25 |
22 #include <a_config.h> | 26 #include <a_config.h> |
23 #include <athdefs.h> | 27 #include <athdefs.h> |
24 #include <a_types.h> | 28 #include <a_types.h> |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 stats->num_oow, stats->num_mpdu, | 657 stats->num_oow, stats->num_mpdu, |
654 stats->num_amsdu, stats->num_delivered, stats->num_timeouts, | 658 stats->num_amsdu, stats->num_delivered, stats->num_timeouts, |
655 stats->num_hole, stats->num_bar, | 659 stats->num_hole, stats->num_bar, |
656 rxtid->seq_next); | 660 rxtid->seq_next); |
657 } | 661 } |
658 A_PRINTF("================================================\n\n"); | 662 A_PRINTF("================================================\n\n"); |
659 | 663 |
660 } | 664 } |
661 | 665 |
662 #endif /* ATH_AR6K_11N_SUPPORT */ | 666 #endif /* ATH_AR6K_11N_SUPPORT */ |
OLD | NEW |