Change two KM_COPY()s to bcopy(). This should have been done when the
KM_* macros were removed.
This commit is contained in:
parent
d0aa6dec50
commit
ca4e8950a4
@ -358,7 +358,7 @@ fore_cmd_drain(fup)
|
||||
/*
|
||||
* Copy PROM info into config areas
|
||||
*/
|
||||
KM_COPY(&fp->pr_mac[2],
|
||||
bcopy(&fp->pr_mac[2],
|
||||
&fup->fu_pif.pif_macaddr,
|
||||
sizeof(struct mac_addr));
|
||||
fup->fu_config.ac_macaddr =
|
||||
|
@ -339,7 +339,7 @@ fore_xmit_segment(fup, m, hxp, segp, lenp)
|
||||
*/
|
||||
fup->fu_stats->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 {
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user