summaryrefslogtreecommitdiffstats
path: root/drivers/net/z85230.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/z85230.c')
-rw-r--r--drivers/net/z85230.c8
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;