build fix: use ath_hal_memcpy instead of memcpy 21/head
authorOleksij Rempel <linux@rempel-privat.de>
Wed, 24 Apr 2013 20:46:41 +0000 (22:46 +0200)
committerOleksij Rempel <linux@rempel-privat.de>
Wed, 24 Apr 2013 20:49:43 +0000 (22:49 +0200)
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
target_firmware/magpie_fw_dev/target/hif/k2_fw_usb_api.c
target_firmware/magpie_fw_dev/target/rompatch/usb_api_patch.c

index a297c23f7fddeb88a4d729fa330b1ee41e1dbafd..47aa3804c87df0c5134f96f3cadabe2e5c41cd7e 100755 (executable)
@@ -712,7 +712,7 @@ BOOLEAN bGet_descriptor_patch(void)
         uint8_t *p = (uint8_t *)u8ConfigDescriptorEX;
 
         /* Copy ConfigDescriptor */
-        memcpy(ConfigDescriptorPatch, p, sizeof(ConfigDescriptorPatch));
+       ath_hal_memcpy(ConfigDescriptorPatch, p, sizeof(ConfigDescriptorPatch));
 
         p = (uint8_t *)ConfigDescriptorPatch;
 
index df00a4bb1d5ead5d6c0c75e965359a5feac44504..d9a394dedbefb0d670f6ba95482690e5cb8de6fc 100755 (executable)
@@ -791,7 +791,7 @@ BOOLEAN bGet_descriptor_patch(void)
                uint8_t *p = (uint8_t *)u8UsbDeviceDescriptor;
                uint32_t u32Tmp=0;
                /* Copy Usb Device Descriptor */
-               memcpy(UsbDeviceDescriptorPatch, p, sizeof(UsbDeviceDescriptorPatch));
+               ath_hal_memcpy(UsbDeviceDescriptorPatch, p, sizeof(UsbDeviceDescriptorPatch));
 
                A_SFLASH_READ_4B(u32Tmp, FLASH_SIZE - EE_DATA_RESERVED_LEN + FLASH_USB_VENDOR_ID_OFFSET*2);
                UsbDeviceDescriptorPatch[VENDOR_ID_OFFSET] = mSWAP_BYTE(mLOW_WORD0(u32Tmp));
@@ -812,7 +812,7 @@ BOOLEAN bGet_descriptor_patch(void)
                uint8_t *p = (uint8_t *)u8ConfigDescriptorEX;
 
                /* Copy ConfigDescriptor */
-               memcpy(ConfigDescriptorPatch, p, sizeof(ConfigDescriptorPatch));
+               ath_hal_memcpy(ConfigDescriptorPatch, p, sizeof(ConfigDescriptorPatch));
 
                p = (uint8_t *)ConfigDescriptorPatch;