Commit fb46223e authored by Jeff Garzik's avatar Jeff Garzik Committed by Linus Torvalds

Remove unused, and now deprecated, references to

dev->rmem_{start,end} in skfp and smctr drivers.
parent a4a07102
...@@ -520,8 +520,6 @@ static void init_dev(struct net_device *dev, u_long iobase) ...@@ -520,8 +520,6 @@ static void init_dev(struct net_device *dev, u_long iobase)
{ {
/* Initialize new device structure */ /* Initialize new device structure */
dev->rmem_end = 0; /* shared memory isn't used */
dev->rmem_start = 0; /* shared memory isn't used */
dev->mem_end = 0; /* shared memory isn't used */ dev->mem_end = 0; /* shared memory isn't used */
dev->mem_start = 0; /* shared memory isn't used */ dev->mem_start = 0; /* shared memory isn't used */
dev->base_addr = iobase; /* save port (I/O) base address */ dev->base_addr = iobase; /* save port (I/O) base address */
......
...@@ -3718,8 +3718,8 @@ static int __init smctr_probe1(struct net_device *dev, int ioaddr) ...@@ -3718,8 +3718,8 @@ static int __init smctr_probe1(struct net_device *dev, int ioaddr)
} }
tp = (struct net_local *)dev->priv; tp = (struct net_local *)dev->priv;
dev->rmem_start = dev->mem_start = tp->ram_base; dev->mem_start = tp->ram_base;
dev->rmem_end = dev->mem_end = dev->mem_start + 0x10000; dev->mem_end = dev->mem_start + 0x10000;
ram = (__u32 *)phys_to_virt(dev->mem_start); ram = (__u32 *)phys_to_virt(dev->mem_start);
tp->ram_access = *(__u32 *)&ram; tp->ram_access = *(__u32 *)&ram;
tp->status = NOT_INITIALIZED; tp->status = NOT_INITIALIZED;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment