diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-02-15 02:15:32 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-02-15 02:15:32 +0000 |
commit | 86464aed71025541805e7b1515541aee89879e33 (patch) | |
tree | e01a457a4912a8553bc65524aa3125d51f29f810 /drivers/net/z85230.c | |
parent | 88f99939ecc6a95a79614574cb7d95ffccfc3466 (diff) |
Merge with Linux 2.2.1.
Diffstat (limited to 'drivers/net/z85230.c')
-rw-r--r-- | drivers/net/z85230.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/z85230.c b/drivers/net/z85230.c index 26cf57793..7e7cc5d14 100644 --- a/drivers/net/z85230.c +++ b/drivers/net/z85230.c @@ -227,7 +227,7 @@ static void z8530_rtsdtr(struct z8530_channel *c, int set) * Receive handler. This is much like the async one but not quite the * same or as complex * - * Note: Its intended that this handler can easily be seperated from + * Note: Its intended that this handler can easily be separated from * the main code to run realtime. That'll be needed for some machines * (eg to ever clock 64kbits on a sparc ;)). * @@ -605,7 +605,7 @@ static char reg_init[16]= int z8530_sync_open(struct device *dev, struct z8530_channel *c) { c->sync = 1; - c->mtu = dev->mtu; + c->mtu = dev->mtu+64; c->count = 0; c->skb = NULL; c->skb2 = NULL; @@ -641,7 +641,7 @@ int z8530_sync_dma_open(struct device *dev, struct z8530_channel *c) unsigned long flags; c->sync = 1; - c->mtu = dev->mtu; + c->mtu = dev->mtu+64; c->count = 0; c->skb = NULL; c->skb2 = NULL; @@ -822,7 +822,7 @@ int z8530_sync_txdma_open(struct device *dev, struct z8530_channel *c) { printk("Opening sync interface for TX-DMA\n"); c->sync = 1; - c->mtu = dev->mtu; + c->mtu = dev->mtu+64; c->count = 0; c->skb = NULL; c->skb2 = NULL; |