From a3f67b08f33f8f52dd06e9f36da9671affa61bbd Mon Sep 17 00:00:00 2001 From: hselasky Date: Sat, 12 Nov 2011 08:16:45 +0000 Subject: Style change. - Make it easier to port the USB code to other platforms by only using one set of memory functions for clearing and copying memory. None of the memory copies are overlapping. This means using bcopy() is not required. - Fix a compile warning when USB_HAVE_BUSDMA=0 - Add missing semicolon in avr32dci. - Update some comments. MFC after: 1 week --- sys/dev/usb/usb_request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/usb/usb_request.c') diff --git a/sys/dev/usb/usb_request.c b/sys/dev/usb/usb_request.c index 347f946..d692b93 100644 --- a/sys/dev/usb/usb_request.c +++ b/sys/dev/usb/usb_request.c @@ -517,7 +517,7 @@ usbd_do_request_flags(struct usb_device *udev, struct mtx *mtx, } } else #endif - bcopy(desc, data, length); + memcpy(data, desc, length); } goto done; /* success */ } -- cgit v1.1