Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/usb pass collect size of firmware to firmware_free(9).
details: https://anonhg.NetBSD.org/src/rev/f9d10ec9dcb2
branches: trunk
changeset: 336243:f9d10ec9dcb2
user: nonaka <nonaka%NetBSD.org@localhost>
date: Sat Feb 21 10:42:15 2015 +0000
description:
pass collect size of firmware to firmware_free(9).
diffstat:
sys/dev/usb/if_athn_usb.c | 17 +++++++++--------
1 files changed, 9 insertions(+), 8 deletions(-)
diffs (52 lines):
diff -r 1c08318bf83a -r f9d10ec9dcb2 sys/dev/usb/if_athn_usb.c
--- a/sys/dev/usb/if_athn_usb.c Sat Feb 21 08:57:48 2015 +0000
+++ b/sys/dev/usb/if_athn_usb.c Sat Feb 21 10:42:15 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_athn_usb.c,v 1.7 2015/01/07 07:05:48 ozaki-r Exp $ */
+/* $NetBSD: if_athn_usb.c,v 1.8 2015/02/21 10:42:15 nonaka Exp $ */
/* $OpenBSD: if_athn_usb.c,v 1.12 2013/01/14 09:50:31 jsing Exp $ */
/*-
@@ -22,7 +22,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_athn_usb.c,v 1.7 2015/01/07 07:05:48 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_athn_usb.c,v 1.8 2015/02/21 10:42:15 nonaka Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -795,7 +795,7 @@
usb_device_request_t req;
const char *name;
u_char *fw, *ptr;
- size_t size;
+ size_t size, remain;
uint32_t addr;
int s, mlen, error;
@@ -841,8 +841,9 @@
req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
req.bRequest = AR_FW_DOWNLOAD;
USETW(req.wIndex, 0);
- while (size > 0) {
- mlen = MIN(size, 4096);
+ remain = size;
+ while (remain > 0) {
+ mlen = MIN(remain, 4096);
USETW(req.wValue, addr);
USETW(req.wLength, mlen);
@@ -851,9 +852,9 @@
firmware_free(fw, size);
return error;
}
- addr += mlen >> 8;
- ptr += mlen;
- size -= mlen;
+ addr += mlen >> 8;
+ ptr += mlen;
+ remain -= mlen;
}
firmware_free(fw, size);
Home |
Main Index |
Thread Index |
Old Index