OLD | NEW |
1 //------------------------------------------------------------------------------ | 1 //------------------------------------------------------------------------------ |
2 // <copyright file="ini_dset.h" company="Atheros"> | 2 // Copyright (c) 2004-2010 Atheros Corporation. All rights reserved. |
3 // Copyright (c) 2004-2007 Atheros Corporation. All rights reserved. | |
4 // | |
5 // This program is free software; you can redistribute it and/or modify | |
6 // it under the terms of the GNU General Public License version 2 as | |
7 // published by the Free Software Foundation; | |
8 // | |
9 // Software distributed under the License is distributed on an "AS | |
10 // IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | |
11 // implied. See the License for the specific language governing | |
12 // rights and limitations under the License. | |
13 // | 3 // |
14 // | 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 // |
| 9 // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 10 // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 11 // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 12 // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 13 // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 14 // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 15 // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 16 // |
| 17 // |
| 18 // |
| 19 // Author(s): ="Atheros" |
15 //------------------------------------------------------------------------------ | 20 //------------------------------------------------------------------------------ |
16 //============================================================================== | |
17 // Author(s): ="Atheros" | |
18 //============================================================================== | |
19 | 21 |
20 #ifndef _INI_DSET_H_ | 22 #ifndef _INI_DSET_H_ |
21 #define _INI_DSET_H_ | 23 #define _INI_DSET_H_ |
22 | 24 |
23 /* | 25 /* |
24 * Each of these represents a WHAL INI table, which consists | 26 * Each of these represents a WHAL INI table, which consists |
25 * of an "address column" followed by 1 or more "value columns". | 27 * of an "address column" followed by 1 or more "value columns". |
26 * | 28 * |
27 * Software uses the base WHAL_INI_DATA_ID+column to access a | 29 * Software uses the base WHAL_INI_DATA_ID+column to access a |
28 * DataSet that holds a particular column of data. | 30 * DataSet that holds a particular column of data. |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 WHAL_INI_DATA_ID_MAX =31 | 73 WHAL_INI_DATA_ID_MAX =31 |
72 } WHAL_INI_DATA_ID; | 74 } WHAL_INI_DATA_ID; |
73 | 75 |
74 typedef PREPACK struct { | 76 typedef PREPACK struct { |
75 A_UINT16 freqIndex; // 1 - A mode 2 - B or G mode 0 - common | 77 A_UINT16 freqIndex; // 1 - A mode 2 - B or G mode 0 - common |
76 A_UINT16 offset; | 78 A_UINT16 offset; |
77 A_UINT32 newValue; | 79 A_UINT32 newValue; |
78 } POSTPACK INI_DSET_REG_OVERRIDE; | 80 } POSTPACK INI_DSET_REG_OVERRIDE; |
79 | 81 |
80 #endif | 82 #endif |
OLD | NEW |