summaryrefslogtreecommitdiff
path: root/nuttx/arch/avr
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-12 16:30:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-12 16:30:48 +0000
commit2619c717f868fc9cb7af456d3bb6dad1a07aa69d (patch)
tree29911295627033d1ea30476d26b87286cf10f111 /nuttx/arch/avr
parent5abae0f25e1093b498415562d1e289305cde6750 (diff)
downloadpx4-nuttx-2619c717f868fc9cb7af456d3bb6dad1a07aa69d.tar.gz
px4-nuttx-2619c717f868fc9cb7af456d3bb6dad1a07aa69d.tar.bz2
px4-nuttx-2619c717f868fc9cb7af456d3bb6dad1a07aa69d.zip
Extend the USB device/class interface: Add parameters to pass the EP0 OUT data that should accompany the OUT SETUP request
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4595 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/avr')
-rw-r--r--nuttx/arch/avr/src/at90usb/at90usb_usbdev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/arch/avr/src/at90usb/at90usb_usbdev.c b/nuttx/arch/avr/src/at90usb/at90usb_usbdev.c
index 302235294..dcda5d6d0 100644
--- a/nuttx/arch/avr/src/at90usb/at90usb_usbdev.c
+++ b/nuttx/arch/avr/src/at90usb/at90usb_usbdev.c
@@ -1,8 +1,8 @@
/*******************************************************************************
* arch/arm/src/at90usb/at90usb_usbdev.c
*
- * Copyright (C) 2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -1080,7 +1080,7 @@ static void avr_dispatchrequest(FAR const struct usb_ctrlreq_s *ctrl)
{
/* Forward to the control request to the class driver implementation */
- ret = CLASS_SETUP(g_usbdev.driver, &g_usbdev.usbdev, ctrl);
+ ret = CLASS_SETUP(g_usbdev.driver, &g_usbdev.usbdev, ctrl, NULL, 0);
}
if (ret < 0)