Deleted Added
full compact
32c32
< __FBSDID("$FreeBSD: head/sys/dev/ed/if_ed_novell.c 141681 2005-02-11 06:02:27Z imp $");
---
> __FBSDID("$FreeBSD: head/sys/dev/ed/if_ed_novell.c 141932 2005-02-14 23:00:41Z imp $");
67c67
< int
---
> static int
71c71
< u_int memsize, n;
---
> u_int memsize;
73c73
< u_char romdata[16], tmp;
---
> u_char tmp;
195,204d194
<
< ed_pio_readmem(sc, 0, romdata, 16);
< for (n = 0; n < ETHER_ADDR_LEN; n++)
< sc->arpcom.ac_enaddr[n] = romdata[n * (sc->isa16bit + 1)];
<
< if ((ED_FLAGS_GETTYPE(flags) == ED_FLAGS_GWETHER) &&
< (sc->arpcom.ac_enaddr[2] == 0x86)) {
< sc->type_str = "Gateway AT";
< }
<
292a283,297
>
> void
> ed_Novell_read_mac(struct ed_softc *sc)
> {
> int n;
> uint8_t romdata[16];
>
> /*
> * Pull the MAC address out of the roms that are on the isa
> * version of these cards.
> */
> ed_pio_readmem(sc, 0, romdata, 16);
> for (n = 0; n < ETHER_ADDR_LEN; n++)
> sc->arpcom.ac_enaddr[n] = romdata[n * (sc->isa16bit + 1)];
> }