diff options
Diffstat (limited to 'drivers/ieee1394/eth1394.h')
-rw-r--r-- | drivers/ieee1394/eth1394.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/ieee1394/eth1394.h b/drivers/ieee1394/eth1394.h index ed8f1c4b7fd8..a77213cfc483 100644 --- a/drivers/ieee1394/eth1394.h +++ b/drivers/ieee1394/eth1394.h | |||
@@ -44,6 +44,12 @@ | |||
44 | 44 | ||
45 | #define ETHER1394_GASP_BUFFERS 16 | 45 | #define ETHER1394_GASP_BUFFERS 16 |
46 | 46 | ||
47 | /* rawiso buffer size - due to a limitation in rawiso, we must limit each | ||
48 | * GASP buffer to be less than PAGE_SIZE. */ | ||
49 | #define ETHER1394_ISO_BUF_SIZE ETHER1394_GASP_BUFFERS * \ | ||
50 | min((unsigned int)PAGE_SIZE, \ | ||
51 | 2 * (1U << (priv->host->csr.max_rec + 1))) | ||
52 | |||
47 | /* Node set == 64 */ | 53 | /* Node set == 64 */ |
48 | #define NODE_SET (ALL_NODES + 1) | 54 | #define NODE_SET (ALL_NODES + 1) |
49 | 55 | ||