You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
327 B
12 lines
327 B
#ifndef SOUND_FIREWIRE_FCP_H_INCLUDED
|
|
#define SOUND_FIREWIRE_FCP_H_INCLUDED
|
|
|
|
struct fw_unit;
|
|
|
|
int fcp_avc_transaction(struct fw_unit *unit,
|
|
const void *command, unsigned int command_size,
|
|
void *response, unsigned int response_size,
|
|
unsigned int response_match_bytes);
|
|
void fcp_bus_reset(struct fw_unit *unit);
|
|
|
|
#endif
|
|
|