diff options
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; |