Commit da136c4d authored by Linus Torvalds's avatar Linus Torvalds

Merge bk://kernel.bkbits.net/jgarzik/bcopy-2.5

into home.osdl.org:/home/torvalds/v2.5/linux
parents 7a6b6776 fbca0b7d
...@@ -166,7 +166,6 @@ int module_probe_snum(module_t *m, nasid_t nasid) ...@@ -166,7 +166,6 @@ int module_probe_snum(module_t *m, nasid_t nasid)
{ {
lboard_t *board; lboard_t *board;
klmod_serial_num_t *comp; klmod_serial_num_t *comp;
char * bcopy(const char * src, char * dest, int count);
char serial_number[16]; char serial_number[16];
/* /*
...@@ -215,9 +214,9 @@ int module_probe_snum(module_t *m, nasid_t nasid) ...@@ -215,9 +214,9 @@ int module_probe_snum(module_t *m, nasid_t nasid)
#endif #endif
if (comp->snum.snum_str[0] != '\0') { if (comp->snum.snum_str[0] != '\0') {
bcopy(comp->snum.snum_str, memcpy(m->sys_snum,
m->sys_snum, comp->snum.snum_str,
MAX_SERIAL_NUM_SIZE); MAX_SERIAL_NUM_SIZE);
m->sys_snum_valid = 1; m->sys_snum_valid = 1;
} }
} }
......
...@@ -29,8 +29,6 @@ ...@@ -29,8 +29,6 @@
#include <asm/sn/io.h> #include <asm/sn/io.h>
#include <asm/sn/sn_private.h> #include <asm/sn/sn_private.h>
extern char *bcopy(const char * src, char * dest, int count);
#define PCI_BUS_NO_1 1 #define PCI_BUS_NO_1 1
...@@ -51,7 +49,7 @@ pic_bus1_inventory_dup(vertex_hdl_t conn_v, vertex_hdl_t peer_conn_v) ...@@ -51,7 +49,7 @@ pic_bus1_inventory_dup(vertex_hdl_t conn_v, vertex_hdl_t peer_conn_v)
(arbitrary_info_t *)&pinv) == GRAPH_SUCCESS) (arbitrary_info_t *)&pinv) == GRAPH_SUCCESS)
{ {
NEW(peer_pinv); NEW(peer_pinv);
bcopy((const char *)pinv, (char *)peer_pinv, sizeof(inventory_t)); memcpy(peer_pinv, pinv, sizeof(inventory_t));
if (hwgraph_info_add_LBL(peer_conn_v, INFO_LBL_INVENT, if (hwgraph_info_add_LBL(peer_conn_v, INFO_LBL_INVENT,
(arbitrary_info_t)peer_pinv) != GRAPH_SUCCESS) { (arbitrary_info_t)peer_pinv) != GRAPH_SUCCESS) {
DEL(peer_pinv); DEL(peer_pinv);
......
...@@ -7757,7 +7757,7 @@ static void ncr_init_ccb(ncb_p np, ccb_p cp) ...@@ -7757,7 +7757,7 @@ static void ncr_init_ccb(ncb_p np, ccb_p cp)
cp->start.schedule.l_cmd = cpu_to_scr(SCR_JUMP); cp->start.schedule.l_cmd = cpu_to_scr(SCR_JUMP);
cp->start.p_phys = cpu_to_scr(CCB_PHYS(cp, phys)); cp->start.p_phys = cpu_to_scr(CCB_PHYS(cp, phys));
bcopy(&cp->start, &cp->restart, sizeof(cp->restart)); memcpy(&cp->restart, &cp->start, sizeof(cp->restart));
cp->start.schedule.l_paddr = cpu_to_scr(NCB_SCRIPT_PHYS (np, idle)); cp->start.schedule.l_paddr = cpu_to_scr(NCB_SCRIPT_PHYS (np, idle));
cp->restart.schedule.l_paddr = cpu_to_scr(NCB_SCRIPTH_PHYS (np, abort)); cp->restart.schedule.l_paddr = cpu_to_scr(NCB_SCRIPTH_PHYS (np, abort));
......
...@@ -70,10 +70,6 @@ ...@@ -70,10 +70,6 @@
#include <scsi/scsi_host.h> #include <scsi/scsi_host.h>
#include "../scsi.h" /* XXX: DID_* */ #include "../scsi.h" /* XXX: DID_* */
#ifndef bcopy
#define bcopy(s, d, n) memcpy((d), (s), (n))
#endif
#ifndef bzero #ifndef bzero
#define bzero(d, n) memset((d), 0, (n)) #define bzero(d, n) memset((d), 0, (n))
#endif #endif
......
...@@ -5889,9 +5889,9 @@ int sym_hcb_attach(hcb_p np, struct sym_fw *fw) ...@@ -5889,9 +5889,9 @@ int sym_hcb_attach(hcb_p np, struct sym_fw *fw)
/* /*
* Copy scripts to controller instance. * Copy scripts to controller instance.
*/ */
bcopy(fw->a_base, np->scripta0, np->scripta_sz); memcpy(np->scripta0, fw->a_base, np->scripta_sz);
bcopy(fw->b_base, np->scriptb0, np->scriptb_sz); memcpy(np->scriptb0, fw->b_base, np->scriptb_sz);
bcopy(fw->z_base, np->scriptz0, np->scriptz_sz); memcpy(np->scriptz0, fw->z_base, np->scriptz_sz);
/* /*
* Setup variable parts in scripts and compute * Setup variable parts in scripts and compute
......
...@@ -225,7 +225,7 @@ void sym_announce_transfer_rate(hcb_p np, int target) ...@@ -225,7 +225,7 @@ void sym_announce_transfer_rate(hcb_p np, int target)
*/ */
void sym_update_trans_settings(hcb_p np, tcb_p tp) void sym_update_trans_settings(hcb_p np, tcb_p tp)
{ {
bcopy(&tp->tinfo.user, &tp->tinfo.goal, sizeof(tp->tinfo.goal)); memcpy(&tp->tinfo.goal, &tp->tinfo.user, sizeof(tp->tinfo.goal));
if (tp->inq_version >= 4) { if (tp->inq_version >= 4) {
switch(tp->inq_byte56 & INQ56_CLOCKING) { switch(tp->inq_byte56 & INQ56_CLOCKING) {
......
...@@ -88,10 +88,6 @@ ...@@ -88,10 +88,6 @@
#define u_int unsigned int #define u_int unsigned int
#define u_long unsigned long #define u_long unsigned long
#ifndef bcopy
#define bcopy(s, d, n) memcpy((d), (s), (n))
#endif
#ifndef bcmp #ifndef bcmp
#define bcmp(s, d, n) memcmp((d), (s), (n)) #define bcmp(s, d, n) memcmp((d), (s), (n))
#endif #endif
......
...@@ -838,7 +838,7 @@ int diWrite(tid_t tid, struct inode *ip) ...@@ -838,7 +838,7 @@ int diWrite(tid_t tid, struct inode *ip)
*/ */
if (S_ISDIR(ip->i_mode) if (S_ISDIR(ip->i_mode)
&& (ip->i_ipmnt->i_mntflag & JFS_DASD_ENABLED)) && (ip->i_ipmnt->i_mntflag & JFS_DASD_ENABLED))
bcopy(&ip->i_DASD, &dp->di_DASD, sizeof(struct dasd)); memcpy(&dp->di_DASD, &ip->i_DASD, sizeof(struct dasd));
#endif /* _JFS_FASTDASD */ #endif /* _JFS_FASTDASD */
/* release the buffer holding the updated on-disk inode. /* release the buffer holding the updated on-disk inode.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment