diff options
author | David Kilroy <kilroyd@googlemail.com> | 2008-10-31 09:35:21 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-10 15:17:42 -0500 |
commit | b2e53b338b7b4608372d070bb477f3bae3971e5a (patch) | |
tree | 1d2bc35201029e8cd0b8007c5ebc0b07fd1a03ec /drivers/net/wireless/hermes_dld.h | |
parent | 5166ccd220f187b2e9edfc5f01eb49f4a0ebf586 (diff) |
orinoco: Move sources to a subdirectory
Keeping all the orinoco drivers in a common directory will make
maintenance easier.
Signed-off by: David Kilroy <kilroyd@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/hermes_dld.h')
-rw-r--r-- | drivers/net/wireless/hermes_dld.h | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/drivers/net/wireless/hermes_dld.h b/drivers/net/wireless/hermes_dld.h deleted file mode 100644 index 6fcb26277999..000000000000 --- a/drivers/net/wireless/hermes_dld.h +++ /dev/null | |||
@@ -1,48 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007, David Kilroy | ||
3 | * | ||
4 | * The contents of this file are subject to the Mozilla Public License | ||
5 | * Version 1.1 (the "License"); you may not use this file except in | ||
6 | * compliance with the License. You may obtain a copy of the License | ||
7 | * at http://www.mozilla.org/MPL/ | ||
8 | * | ||
9 | * Software distributed under the License is distributed on an "AS IS" | ||
10 | * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See | ||
11 | * the License for the specific language governing rights and | ||
12 | * limitations under the License. | ||
13 | * | ||
14 | * Alternatively, the contents of this file may be used under the | ||
15 | * terms of the GNU General Public License version 2 (the "GPL"), in | ||
16 | * which case the provisions of the GPL are applicable instead of the | ||
17 | * above. If you wish to allow the use of your version of this file | ||
18 | * only under the terms of the GPL and not to allow others to use your | ||
19 | * version of this file under the MPL, indicate your decision by | ||
20 | * deleting the provisions above and replace them with the notice and | ||
21 | * other provisions required by the GPL. If you do not delete the | ||
22 | * provisions above, a recipient may use your version of this file | ||
23 | * under either the MPL or the GPL. | ||
24 | */ | ||
25 | #ifndef _HERMES_DLD_H | ||
26 | #define _HERMES_DLD_H | ||
27 | |||
28 | #include "hermes.h" | ||
29 | |||
30 | int hermesi_program_init(hermes_t *hw, u32 offset); | ||
31 | int hermesi_program_end(hermes_t *hw); | ||
32 | int hermes_program(hermes_t *hw, const char *first_block, const char *end); | ||
33 | |||
34 | int hermes_read_pda(hermes_t *hw, | ||
35 | __le16 *pda, | ||
36 | u32 pda_addr, | ||
37 | u16 pda_len, | ||
38 | int use_eeprom); | ||
39 | int hermes_apply_pda(hermes_t *hw, | ||
40 | const char *first_pdr, | ||
41 | const __le16 *pda); | ||
42 | int hermes_apply_pda_with_defaults(hermes_t *hw, | ||
43 | const char *first_pdr, | ||
44 | const __le16 *pda); | ||
45 | |||
46 | size_t hermes_blocks_length(const char *first_block); | ||
47 | |||
48 | #endif /* _HERMES_DLD_H */ | ||