diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-04 21:06:23 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-04-29 18:00:28 -0400 |
commit | afd6546d8d2d8ba1dbe1d2508baf81eebdca3d79 (patch) | |
tree | c6f5d115d7cb7eb6daad6c8a27b4854809e5ed50 /drivers/ieee1394/config_roms.c | |
parent | ef8153348f82688af87e19d594162ca81741fe6a (diff) |
ieee1394: move some comments from declaration to definition
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/config_roms.c')
-rw-r--r-- | drivers/ieee1394/config_roms.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/ieee1394/config_roms.c b/drivers/ieee1394/config_roms.c index e2de6fa0c9fe..6a87a2700c9d 100644 --- a/drivers/ieee1394/config_roms.c +++ b/drivers/ieee1394/config_roms.c | |||
@@ -39,7 +39,7 @@ struct hpsb_config_rom_entry { | |||
39 | unsigned int flag; | 39 | unsigned int flag; |
40 | }; | 40 | }; |
41 | 41 | ||
42 | 42 | /* The default host entry. This must succeed. */ | |
43 | int hpsb_default_host_entry(struct hpsb_host *host) | 43 | int hpsb_default_host_entry(struct hpsb_host *host) |
44 | { | 44 | { |
45 | struct csr1212_keyval *root; | 45 | struct csr1212_keyval *root; |
@@ -170,7 +170,7 @@ static struct hpsb_config_rom_entry *const config_rom_entries[] = { | |||
170 | NULL, | 170 | NULL, |
171 | }; | 171 | }; |
172 | 172 | ||
173 | 173 | /* Initialize all config roms */ | |
174 | int hpsb_init_config_roms(void) | 174 | int hpsb_init_config_roms(void) |
175 | { | 175 | { |
176 | int i, error = 0; | 176 | int i, error = 0; |
@@ -191,6 +191,7 @@ int hpsb_init_config_roms(void) | |||
191 | return error; | 191 | return error; |
192 | } | 192 | } |
193 | 193 | ||
194 | /* Cleanup all config roms */ | ||
194 | void hpsb_cleanup_config_roms(void) | 195 | void hpsb_cleanup_config_roms(void) |
195 | { | 196 | { |
196 | int i; | 197 | int i; |
@@ -201,6 +202,7 @@ void hpsb_cleanup_config_roms(void) | |||
201 | } | 202 | } |
202 | } | 203 | } |
203 | 204 | ||
205 | /* Add extra config roms to specified host */ | ||
204 | int hpsb_add_extra_config_roms(struct hpsb_host *host) | 206 | int hpsb_add_extra_config_roms(struct hpsb_host *host) |
205 | { | 207 | { |
206 | int i, error = 0; | 208 | int i, error = 0; |
@@ -219,6 +221,7 @@ int hpsb_add_extra_config_roms(struct hpsb_host *host) | |||
219 | return error; | 221 | return error; |
220 | } | 222 | } |
221 | 223 | ||
224 | /* Remove extra config roms from specified host */ | ||
222 | void hpsb_remove_extra_config_roms(struct hpsb_host *host) | 225 | void hpsb_remove_extra_config_roms(struct hpsb_host *host) |
223 | { | 226 | { |
224 | int i; | 227 | int i; |