diff options
author | arr <arr@FreeBSD.org> | 2002-04-19 17:43:11 +0000 |
---|---|---|
committer | arr <arr@FreeBSD.org> | 2002-04-19 17:43:11 +0000 |
commit | 1482903ceafd6c259928760686a1a308932b4d7c (patch) | |
tree | fa3c5e71044a167ec12068a413ebbdf7f295cbf8 /sys/dev/hea/eni_transmit.c | |
parent | f8344a0fde63f55dca7542891be03ed0181062f7 (diff) | |
download | FreeBSD-src-1482903ceafd6c259928760686a1a308932b4d7c.zip FreeBSD-src-1482903ceafd6c259928760686a1a308932b4d7c.tar.gz |
- Remove KM_ macro calls and replace with the real function we're calling.
As a note, this driver needs the same updating as the hfa driver was
just given; removing these macros since I will be nuking them from
netatm.
Diffstat (limited to 'sys/dev/hea/eni_transmit.c')
-rw-r--r-- | sys/dev/hea/eni_transmit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/hea/eni_transmit.c b/sys/dev/hea/eni_transmit.c index 13ea896..fc34a76 100644 --- a/sys/dev/hea/eni_transmit.c +++ b/sys/dev/hea/eni_transmit.c @@ -489,7 +489,7 @@ retry: */ eup->eu_stats.eni_st_drv.drv_xm_segnoal++; bfr = cp - align; - KM_COPY ( cp, bfr, KB_LEN ( m ) ); + bcopy ( cp, bfr, KB_LEN ( m ) ); KB_HEADMOVE ( m, -align ); } else { /* |