Change interface of fwmem_read_*() functions to be usable from other part

of the module.
This commit is contained in:
Hidetoshi Shimokawa 2002-11-12 11:15:01 +00:00
parent c3b0952272
commit 98e6731b51

View File

@ -34,10 +34,10 @@
* $FreeBSD$
*/
struct fw_xfer * fwmem_read_quad(struct firewire_comm *,
int, u_int16_t, u_int32_t);
struct fw_xfer * fwmem_read_block(struct firewire_comm *,
int, u_int16_t, u_int32_t, int);
struct fw_xfer *fwmem_read_quad(struct firewire_comm *, u_int8_t, int,
u_int16_t, u_int32_t, void (*)(struct fw_xfer *));
struct fw_xfer *fwmem_read_block(struct firewire_comm *, u_int8_t, int,
u_int16_t, u_int32_t, int, void (*)(struct fw_xfer *));
d_open_t fwmem_open;
d_close_t fwmem_close;
d_ioctl_t fwmem_ioctl;