diff options
-rw-r--r-- | drivers/ieee1394/csr.h | 5 | ||||
-rw-r--r-- | drivers/ieee1394/hosts.h | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/drivers/ieee1394/csr.h b/drivers/ieee1394/csr.h index 2bc080f76510..f11546550d84 100644 --- a/drivers/ieee1394/csr.h +++ b/drivers/ieee1394/csr.h | |||
@@ -91,4 +91,9 @@ extern struct csr1212_bus_ops csr_bus_ops; | |||
91 | int init_csr(void); | 91 | int init_csr(void); |
92 | void cleanup_csr(void); | 92 | void cleanup_csr(void); |
93 | 93 | ||
94 | /* hpsb_update_config_rom() is deprecated */ | ||
95 | struct hpsb_host; | ||
96 | int hpsb_update_config_rom(struct hpsb_host *host, const quadlet_t *new_rom, | ||
97 | size_t size, unsigned char rom_version); | ||
98 | |||
94 | #endif /* _IEEE1394_CSR_H */ | 99 | #endif /* _IEEE1394_CSR_H */ |
diff --git a/drivers/ieee1394/hosts.h b/drivers/ieee1394/hosts.h index b911e2af99a3..69a7c9ff5ed7 100644 --- a/drivers/ieee1394/hosts.h +++ b/drivers/ieee1394/hosts.h | |||
@@ -205,13 +205,6 @@ struct hpsb_host *hpsb_alloc_host(struct hpsb_host_driver *drv, size_t extra, | |||
205 | int hpsb_add_host(struct hpsb_host *host); | 205 | int hpsb_add_host(struct hpsb_host *host); |
206 | void hpsb_remove_host(struct hpsb_host *h); | 206 | void hpsb_remove_host(struct hpsb_host *h); |
207 | 207 | ||
208 | /* The following 2 functions are deprecated and will be removed when the | ||
209 | * raw1394/libraw1394 update is complete. */ | ||
210 | int hpsb_update_config_rom(struct hpsb_host *host, | ||
211 | const quadlet_t *new_rom, size_t size, unsigned char rom_version); | ||
212 | int hpsb_get_config_rom(struct hpsb_host *host, quadlet_t *buffer, | ||
213 | size_t buffersize, size_t *rom_size, unsigned char *rom_version); | ||
214 | |||
215 | /* Updates the configuration rom image of a host. rom_version must be the | 208 | /* Updates the configuration rom image of a host. rom_version must be the |
216 | * current version, otherwise it will fail with return value -1. If this | 209 | * current version, otherwise it will fail with return value -1. If this |
217 | * host does not support config-rom-update, it will return -EINVAL. | 210 | * host does not support config-rom-update, it will return -EINVAL. |