summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/main_usb.c
diff options
context:
space:
mode:
authorJim Lieb2009-08-12 23:54:11 +0200
committerGreg Kroah-Hartman2009-09-15 21:02:08 +0200
commit3e362598fd3c7b8729afd0383a4cdf08849b020e (patch)
tree58a16b253574333474e91aac5e4968806c53a037 /drivers/staging/vt6656/main_usb.c
parentStaging: vt665x: Remove umem.h Part 1 (diff)
downloadkernel-qcow2-linux-3e362598fd3c7b8729afd0383a4cdf08849b020e.tar.gz
kernel-qcow2-linux-3e362598fd3c7b8729afd0383a4cdf08849b020e.tar.xz
kernel-qcow2-linux-3e362598fd3c7b8729afd0383a4cdf08849b020e.zip
Staging: vt665x: Remove umem.h Part 2
Remove references to umem.h macros and refer directly to memcpy functions. Delete the include file. Signed-off-by: Jim Lieb <lieb@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vt6656/main_usb.c')
-rw-r--r--drivers/staging/vt6656/main_usb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vt6656/main_usb.c b/drivers/staging/vt6656/main_usb.c
index 10e151a9590e..37bc25c512fb 100644
--- a/drivers/staging/vt6656/main_usb.c
+++ b/drivers/staging/vt6656/main_usb.c
@@ -607,8 +607,8 @@ static BOOL device_init_registers(PSDevice pDevice, DEVICE_INIT_TYPE InitType)
CARDbSetMediaChannel(pDevice, pMgmt->uCurrChannel);
// get Permanent network address
- MEMvCopy(pDevice->abyPermanentNetAddr,&(sInitRsp.byNetAddr[0]),6)
- MEMvCopy(pDevice->abyCurrentNetAddr, pDevice->abyPermanentNetAddr, U_ETHER_ADDR_LEN);
+ memcpy(pDevice->abyPermanentNetAddr,&(sInitRsp.byNetAddr[0]),6);
+ memcpy(pDevice->abyCurrentNetAddr, pDevice->abyPermanentNetAddr, U_ETHER_ADDR_LEN);
// if exist SW network address, use SW network address.