More initialization by calling Open Firmware.

This commit is contained in:
tsubai 1999-06-20 05:34:59 +00:00
parent 128b6749ab
commit 9ac9208434
1 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_bm.c,v 1.2 1999/05/18 23:52:53 thorpej Exp $ */
/* $NetBSD: if_bm.c,v 1.3 1999/06/20 05:34:59 tsubai Exp $ */
/*-
* Copyright (C) 1998, 1999 Tsubai Masanari. All rights reserved.
@ -174,8 +174,14 @@ bmac_attach(parent, self, aux)
int i;
sc->sc_flags =0;
if (strcmp(ca->ca_name, "ethernet") == 0)
if (strcmp(ca->ca_name, "ethernet") == 0) {
char name[64];
bzero(name, 64);
OF_package_to_path(ca->ca_node, name, sizeof(name));
OF_open(name);
sc->sc_flags |= BMAC_BMACPLUS;
}
ca->ca_reg[0] += ca->ca_baseaddr;
ca->ca_reg[2] += ca->ca_baseaddr;