bcopy -> memcpy, bzero -> memset

This commit is contained in:
wiz 2001-07-22 15:17:30 +00:00
parent 879d773221
commit 684d06bac8
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: OSFpal.c,v 1.7 1998/09/28 21:21:55 thorpej Exp $ */ /* $NetBSD: OSFpal.c,v 1.8 2001/07/22 15:17:30 wiz Exp $ */
/* /*
* Copyright (c) 1994, 1996 Carnegie-Mellon University. * Copyright (c) 1994, 1996 Carnegie-Mellon University.
@ -63,7 +63,7 @@ OSFpal()
return; return;
} }
switch_palcode(); switch_palcode();
bcopy(&p->pcs_palrevisions[PALvar_OSF1], &p->pcs_pal_rev, memcpy(&p->pcs_pal_rev, &p->pcs_palrevisions[PALvar_OSF1],
sizeof(p->pcs_pal_rev)); sizeof(p->pcs_pal_rev));
printf("Switch to OSF PAL code succeeded.\n"); printf("Switch to OSF PAL code succeeded.\n");
} }

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot.c,v 1.25 2000/06/12 23:38:03 matt Exp $ */ /* $NetBSD: boot.c,v 1.26 2001/07/22 15:17:31 wiz Exp $ */
/* /*
* Copyright (c) 1992, 1993 * Copyright (c) 1992, 1993
@ -143,12 +143,12 @@ main(long fd)
/* /*
* Fill in the bootinfo for the kernel. * Fill in the bootinfo for the kernel.
*/ */
bzero(&bootinfo_v1, sizeof(bootinfo_v1)); memset(&bootinfo_v1, 0, sizeof(bootinfo_v1));
bootinfo_v1.ssym = marks[MARK_SYM]; bootinfo_v1.ssym = marks[MARK_SYM];
bootinfo_v1.esym = marks[MARK_END]; bootinfo_v1.esym = marks[MARK_END];
bcopy(name, bootinfo_v1.booted_kernel, memcpy(bootinfo_v1.booted_kernel, name,
sizeof(bootinfo_v1.booted_kernel)); sizeof(bootinfo_v1.booted_kernel));
bcopy(boot_flags, bootinfo_v1.boot_flags, memcpy(bootinfo_v1.boot_flags, boot_flags,
sizeof(bootinfo_v1.boot_flags)); sizeof(bootinfo_v1.boot_flags));
bootinfo_v1.hwrpb = (void *)HWRPB_ADDR; bootinfo_v1.hwrpb = (void *)HWRPB_ADDR;
bootinfo_v1.hwrpbsize = ((struct rpb *)HWRPB_ADDR)->rpb_size; bootinfo_v1.hwrpbsize = ((struct rpb *)HWRPB_ADDR)->rpb_size;

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_prom.c,v 1.15 1999/11/13 21:38:21 thorpej Exp $ */ /* $NetBSD: if_prom.c,v 1.16 2001/07/22 15:17:31 wiz Exp $ */
/* /*
* Copyright (c) 1997 Christopher G. Demetriou. All rights reserved. * Copyright (c) 1997 Christopher G. Demetriou. All rights reserved.
@ -144,7 +144,7 @@ prom_get(desc, pkt, len, timeout)
cc = min(cc, len); cc = min(cc, len);
else else
cc = len; cc = len;
bcopy(hate, pkt, cc); memcpy(pkt, hate, cc);
return cc; return cc;
} }
@ -213,7 +213,7 @@ prom_init(desc, machdep_hint)
if (netbbinfovalid && netbbinfo.force) { if (netbbinfovalid && netbbinfo.force) {
printf("boot: using hard-coded ethernet address (forced).\n"); printf("boot: using hard-coded ethernet address (forced).\n");
bcopy(netbbinfo.ether_addr, desc->myea, sizeof desc->myea); memcpy(desc->myea, netbbinfo.ether_addr, sizeof desc->myea);
} }
gotit: gotit:
@ -224,7 +224,7 @@ punt:
broken_firmware = 1; broken_firmware = 1;
if (netbbinfovalid) { if (netbbinfovalid) {
printf("boot: using hard-coded ethernet address.\n"); printf("boot: using hard-coded ethernet address.\n");
bcopy(netbbinfo.ether_addr, desc->myea, sizeof desc->myea); memcpy(desc->myea, netbbinfo.ether_addr, sizeof desc->myea);
goto gotit; goto gotit;
} }

View File

@ -1,4 +1,4 @@
/* $NetBSD: setnetbootinfo.c,v 1.10 1999/04/05 02:55:38 cgd Exp $ */ /* $NetBSD: setnetbootinfo.c,v 1.11 2001/07/22 15:17:32 wiz Exp $ */
/* /*
* Copyright (c) 1997 Christopher G. Demetriou * Copyright (c) 1997 Christopher G. Demetriou
@ -208,7 +208,7 @@ main(argc, argv)
if (verbose) if (verbose)
printf("setting netbbinfo structure...\n"); printf("setting netbbinfo structure...\n");
bzero(netbbinfop, sizeof *netbbinfop); memset(netbbinfop, 0, sizeof *netbbinfop);
netbbinfop->magic1 = 0xfeedbabedeadbeefLL; netbbinfop->magic1 = 0xfeedbabedeadbeefLL;
netbbinfop->magic2 = 0xfeedbeefdeadbabeLL; netbbinfop->magic2 = 0xfeedbeefdeadbabeLL;
netbbinfop->set = unset ? 0 : 1; netbbinfop->set = unset ? 0 : 1;