aboutsummaryrefslogtreecommitdiff
path: root/nuttx/drivers
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-06-12 16:11:31 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-06-12 16:11:31 +0000
commite7b80154df9a014306c7d785d731f949278a3c94 (patch)
treeeb7dfcf5b90bab0d33944737b9a0e190245469fd /nuttx/drivers
parent9aec5418015792440adfccfcec6341738aef8659 (diff)
downloadpx4-firmware-e7b80154df9a014306c7d785d731f949278a3c94.tar.gz
px4-firmware-e7b80154df9a014306c7d785d731f949278a3c94.tar.bz2
px4-firmware-e7b80154df9a014306c7d785d731f949278a3c94.zip
Fix PL2303 typo checked in a long time ago; NFS update
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4832 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/drivers')
-rw-r--r--nuttx/drivers/usbdev/pl2303.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/drivers/usbdev/pl2303.c b/nuttx/drivers/usbdev/pl2303.c
index 8bd94ddd0..69bf87965 100644
--- a/nuttx/drivers/usbdev/pl2303.c
+++ b/nuttx/drivers/usbdev/pl2303.c
@@ -598,7 +598,7 @@ static int usbclass_sndpacket(FAR struct pl2303_dev_s *priv)
/* Get the maximum number of bytes that will fit into one bulk IN request */
#ifdef CONFIG_PL2303_BULKREQLEN
- reqlen = MAX(CONFIG_CDCACM_BULKREQLEN, ep->maxpacket);
+ reqlen = MAX(CONFIG_PL2303_BULKREQLEN, ep->maxpacket);
#else
reqlen = ep->maxpacket;
#endif