|
@@ -890,9 +890,6 @@ static int rt73usb_load_firmware(struct rt2x00_dev *rt2x00dev, const void *data,
|
|
|
unsigned int i;
|
|
|
int status;
|
|
|
u32 reg;
|
|
|
- const char *ptr = data;
|
|
|
- char *cache;
|
|
|
- int buflen;
|
|
|
|
|
|
/*
|
|
|
* Wait for stable hardware.
|
|
@@ -911,31 +908,12 @@ static int rt73usb_load_firmware(struct rt2x00_dev *rt2x00dev, const void *data,
|
|
|
|
|
|
/*
|
|
|
* Write firmware to device.
|
|
|
- * We setup a seperate cache for this action,
|
|
|
- * since we are going to write larger chunks of data
|
|
|
- * then normally used cache size.
|
|
|
*/
|
|
|
- cache = kmalloc(CSR_CACHE_SIZE_FIRMWARE, GFP_KERNEL);
|
|
|
- if (!cache) {
|
|
|
- ERROR(rt2x00dev, "Failed to allocate firmware cache.\n");
|
|
|
- return -ENOMEM;
|
|
|
- }
|
|
|
-
|
|
|
- for (i = 0; i < len; i += CSR_CACHE_SIZE_FIRMWARE) {
|
|
|
- buflen = min_t(int, len - i, CSR_CACHE_SIZE_FIRMWARE);
|
|
|
-
|
|
|
- memcpy(cache, ptr, buflen);
|
|
|
-
|
|
|
- rt2x00usb_vendor_request(rt2x00dev, USB_MULTI_WRITE,
|
|
|
- USB_VENDOR_REQUEST_OUT,
|
|
|
- FIRMWARE_IMAGE_BASE + i, 0,
|
|
|
- cache, buflen,
|
|
|
- REGISTER_TIMEOUT32(buflen));
|
|
|
-
|
|
|
- ptr += buflen;
|
|
|
- }
|
|
|
-
|
|
|
- kfree(cache);
|
|
|
+ rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE,
|
|
|
+ USB_VENDOR_REQUEST_OUT,
|
|
|
+ FIRMWARE_IMAGE_BASE,
|
|
|
+ data, len,
|
|
|
+ REGISTER_TIMEOUT32(len));
|
|
|
|
|
|
/*
|
|
|
* Send firmware request to device to load firmware,
|
|
@@ -1374,10 +1352,10 @@ static void rt73usb_write_beacon(struct queue_entry *entry)
|
|
|
* Write entire beacon with descriptor to register.
|
|
|
*/
|
|
|
beacon_base = HW_BEACON_OFFSET(entry->entry_idx);
|
|
|
- rt2x00usb_vendor_request(rt2x00dev, USB_MULTI_WRITE,
|
|
|
- USB_VENDOR_REQUEST_OUT, beacon_base, 0,
|
|
|
- entry->skb->data, entry->skb->len,
|
|
|
- REGISTER_TIMEOUT32(entry->skb->len));
|
|
|
+ rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE,
|
|
|
+ USB_VENDOR_REQUEST_OUT, beacon_base,
|
|
|
+ entry->skb->data, entry->skb->len,
|
|
|
+ REGISTER_TIMEOUT32(entry->skb->len));
|
|
|
|
|
|
/*
|
|
|
* Clean up the beacon skb.
|