diff options
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/if_de.c | 6 | ||||
-rw-r--r-- | sys/pci/if_fxp.c | 6 | ||||
-rw-r--r-- | sys/pci/if_vx.c | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/sys/pci/if_de.c b/sys/pci/if_de.c index 074893a..bf63619 100644 --- a/sys/pci/if_de.c +++ b/sys/pci/if_de.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_de.c,v 1.40 1995/12/14 09:53:58 phk Exp $ + * $Id: if_de.c,v 1.41 1996/01/23 21:47:00 se Exp $ * */ @@ -2002,12 +2002,12 @@ tulip_attach( #ifdef __FreeBSD__ printf("%s%d", sc->tulip_name, sc->tulip_unit); #endif - printf(": %s%s pass %d.%d Ethernet address %s\n", + printf(": %s%s pass %d.%d Ethernet address %6D\n", sc->tulip_boardsw->bd_description, tulip_chipdescs[sc->tulip_chipid], (sc->tulip_revinfo & 0xF0) >> 4, sc->tulip_revinfo & 0x0F, - ether_sprintf(sc->tulip_hwaddr)); + sc->tulip_hwaddr, ":"); if ((*sc->tulip_boardsw->bd_media_probe)(sc)) { ifp->if_flags |= IFF_ALTPHYS; diff --git a/sys/pci/if_fxp.c b/sys/pci/if_fxp.c index ddafbef..1fdf77d 100644 --- a/sys/pci/if_fxp.c +++ b/sys/pci/if_fxp.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_fxp.c,v 1.8 1996/01/15 10:12:41 davidg Exp $ + * $Id: if_fxp.c,v 1.9 1996/01/23 21:47:03 se Exp $ */ /* @@ -290,8 +290,8 @@ fxp_attach(config_id, unit) ifp->if_watchdog = fxp_watchdog; fxp_get_macaddr(sc); - printf("fxp%d: Ethernet address %s\n", unit, - ether_sprintf(sc->arpcom.ac_enaddr)); + printf("fxp%d: Ethernet address %6D\n", unit, + sc->arpcom.ac_enaddr, ":"); /* * Attach the interface. diff --git a/sys/pci/if_vx.c b/sys/pci/if_vx.c index 7fc63c3..5c7b08f 100644 --- a/sys/pci/if_vx.c +++ b/sys/pci/if_vx.c @@ -239,7 +239,7 @@ vx_pci_attach( GO_WINDOW(2); outw(BASE + VX_W2_ADDR_0 + (i * 2), ntohs(p[i])); } - printf(" address %s\n", ether_sprintf(sc->arpcom.ac_enaddr)); + printf(" address %6D\n", sc->arpcom.ac_enaddr, ":"); /* * Check for receive overrun anomaly in the first revision of the |