summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/if_el.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1996-01-26 09:29:29 +0000
committerphk <phk@FreeBSD.org>1996-01-26 09:29:29 +0000
commit2dd896405c74abac2e4fc5b59f6e4c0c8510f53f (patch)
tree60e789740041241e0b666fa65bdd83de42c3b38a /sys/i386/isa/if_el.c
parent8b13b00640349354a34dca6dbab316a65abb70d6 (diff)
downloadFreeBSD-src-2dd896405c74abac2e4fc5b59f6e4c0c8510f53f.zip
FreeBSD-src-2dd896405c74abac2e4fc5b59f6e4c0c8510f53f.tar.gz
The last part of the ether_sprint -> %6D change.
Sorry for the delay. (%D is for hexdumping.)
Diffstat (limited to 'sys/i386/isa/if_el.c')
-rw-r--r--sys/i386/isa/if_el.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/i386/isa/if_el.c b/sys/i386/isa/if_el.c
index 837a5f1..c7b4aba 100644
--- a/sys/i386/isa/if_el.c
+++ b/sys/i386/isa/if_el.c
@@ -6,7 +6,7 @@
*
* Questions, comments, bug reports and fixes to kimmel@cs.umass.edu.
*
- * $Id: if_el.c,v 1.20 1995/12/10 13:38:39 phk Exp $
+ * $Id: if_el.c,v 1.21 1995/12/15 00:54:10 bde Exp $
*/
/* Except of course for the portions of code lifted from other FreeBSD
* drivers (mainly elread, elget and el_ioctl)
@@ -166,7 +166,7 @@ el_probe(struct isa_device *idev)
outb(base+EL_GPBL,i);
station_addr[i] = inb(base+EL_EAW);
}
- dprintf(("Address is %s\n",ether_sprintf(station_addr)));
+ dprintf(("Address is %6D\n",station_addr, ":"));
/* If the vendor code is ok, return a 1. We'll assume that
* whoever configured this system is right about the IRQ.
@@ -238,8 +238,8 @@ el_attach(struct isa_device *idev)
}
/* Print out some information for the user */
- printf("el%d: 3c501 address %s\n",idev->id_unit,
- ether_sprintf(sc->arpcom.ac_enaddr));
+ printf("el%d: 3c501 address %6D\n",idev->id_unit,
+ sc->arpcom.ac_enaddr, ":");
/* Finally, attach to bpf filter if it is present. */
#if NBPFILTER > 0
@@ -553,8 +553,8 @@ void elintr(int unit)
insb(base+EL_BUF,sc->el_pktbuf,len);
outb(base+EL_RBC,0);
outb(base+EL_AC,EL_AC_RX);
- dprintf(("%s-->",ether_sprintf(sc->el_pktbuf+6)));
- dprintf(("%s\n",ether_sprintf(sc->el_pktbuf)));
+ dprintf(("%6D-->",sc->el_pktbuf+6,":"));
+ dprintf(("%6D\n",sc->el_pktbuf,":"));
/* Pass data up to upper levels */
len -= sizeof(struct ether_header);
OpenPOWER on IntegriCloud