diff options
author | ats <ats@FreeBSD.org> | 1994-09-02 22:13:34 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1994-09-02 22:13:34 +0000 |
commit | b3e2310c798ad45767605dc678463702104d30ce (patch) | |
tree | 14c9a8993a48a4f2eb5530e5315ea836fecfd957 /sys/dev/ie | |
parent | 874994c7cde823b42c2cba4a2db8dcbb27c45f3e (diff) | |
download | FreeBSD-src-b3e2310c798ad45767605dc678463702104d30ce.zip FreeBSD-src-b3e2310c798ad45767605dc678463702104d30ce.tar.gz |
Reviewed by:
Submitted by:
1) if_ie.c:
Changed a printf and put a space in it. Formerly the "<3C507>"
confused the syslog. He tried to see that as the priority to
log that message.
2) isa_device.h:
Changed the iobase variable from short to u_short. EISA
Adresses can go up to 0xf000 and the sign extension doesn't
look good in the probe output. Example:
ep1 at 0xffff8000-0xffff8000f is not good :-), i like more a
ep1 at 0x8000-0x8000f.
3) isa.c:
Changed a string constant from "probe" to "prob", it gets
later already an "ed" tagged on the end.
Diffstat (limited to 'sys/dev/ie')
-rw-r--r-- | sys/dev/ie/if_ie.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c index 9693804..7c1dbd1 100644 --- a/sys/dev/ie/if_ie.c +++ b/sys/dev/ie/if_ie.c @@ -43,7 +43,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ie.c,v 1.10 1994/08/24 22:32:43 ats Exp $ + * $Id: if_ie.c,v 1.11 1994/08/25 20:16:59 wollman Exp $ */ /* @@ -485,7 +485,7 @@ ieattach(dvp) ifp->if_unit = unit; ifp->if_name = iedriver.name; ifp->if_mtu = ETHERMTU; - printf("<%s R%d> ethernet address %s\n", + printf(" <%s R%d> ethernet address %s\n", ie_hardware_names[ie_softc[unit].hard_type], ie_softc[unit].hard_vers + 1, ether_sprintf(ie->arpcom.ac_enaddr)); |