diff options
author | Mike Barcroft <mike@FreeBSD.org> | 2002-04-20 19:27:34 +0000 |
---|---|---|
committer | Mike Barcroft <mike@FreeBSD.org> | 2002-04-20 19:27:34 +0000 |
commit | 72cd6fa0c0b4944e2ef717703f073273d5f6a7bb (patch) | |
tree | ea2f93eb26088c487200a539b9796e1b985843ae /sys/dev/hfa/fore_command.c | |
parent | b56f8802e5c843ff007db4a7172d9d8e61950c47 (diff) |
Change two KM_COPY()s to bcopy(). This should have been done when the
KM_* macros were removed.
Notes
Notes:
svn path=/head/; revision=95147
Diffstat (limited to 'sys/dev/hfa/fore_command.c')
-rw-r--r-- | sys/dev/hfa/fore_command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/hfa/fore_command.c b/sys/dev/hfa/fore_command.c index f26a131d482c..d772c561a377 100644 --- a/sys/dev/hfa/fore_command.c +++ b/sys/dev/hfa/fore_command.c @@ -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 = |