diff options
author | imp <imp@FreeBSD.org> | 2005-02-10 05:34:25 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-02-10 05:34:25 +0000 |
commit | c5284842ba695e3c2991b9b5c34b9a09e4468413 (patch) | |
tree | a47c0b43aeaf4119ad184db6f2808193f58e4678 /sys/dev | |
parent | 359d95f6c53a1687ca4c88ac358e1950c38db17a (diff) | |
download | FreeBSD-src-c5284842ba695e3c2991b9b5c34b9a09e4468413.zip FreeBSD-src-c5284842ba695e3c2991b9b5c34b9a09e4468413.tar.gz |
Remove an ifdef that's been here for a long time. So long, in fact,
that it references a function parameter that's not been passed in for
more than 4 years.
This has been if 0'd since 1994.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ed/if_ed_novell.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/dev/ed/if_ed_novell.c b/sys/dev/ed/if_ed_novell.c index 235dee6..2f960b2 100644 --- a/sys/dev/ed/if_ed_novell.c +++ b/sys/dev/ed/if_ed_novell.c @@ -165,13 +165,6 @@ ed_probe_Novell_generic(device_t dev, int flags) /* 8k of memory plus an additional 8k if 16bit */ memsize = 8192 + sc->isa16bit * 8192; - -#if 0 /* probably not useful - NE boards only come two ways */ - /* allow kernel config file overrides */ - if (isa_dev->id_msize) - memsize = isa_dev->id_msize; -#endif - sc->mem_size = memsize; /* NIC memory doesn't start at zero on an NE board */ |