summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/lpc214x
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-06-11 23:38:19 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-06-11 23:38:19 +0000
commitca66e136a5f50cb988febe14e4eb433a93eb10cf (patch)
treefe99ba2cb6f869ae2f50be4cee3f55d2df02bd3f /nuttx/arch/arm/src/lpc214x
parenta374e8dfd6a0fe7f355c0381b46657d405520f98 (diff)
downloadpx4-nuttx-ca66e136a5f50cb988febe14e4eb433a93eb10cf.tar.gz
px4-nuttx-ca66e136a5f50cb988febe14e4eb433a93eb10cf.tar.bz2
px4-nuttx-ca66e136a5f50cb988febe14e4eb433a93eb10cf.zip
eliminate some warnings
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1879 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/lpc214x')
-rw-r--r--nuttx/arch/arm/src/lpc214x/lpc214x_usbdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/lpc214x/lpc214x_usbdev.c b/nuttx/arch/arm/src/lpc214x/lpc214x_usbdev.c
index f4bd1bd13..a7d1f4266 100644
--- a/nuttx/arch/arm/src/lpc214x/lpc214x_usbdev.c
+++ b/nuttx/arch/arm/src/lpc214x/lpc214x_usbdev.c
@@ -1078,7 +1078,7 @@ static int lpc214x_wrrequest(struct lpc214x_ep_s *privep)
/* Send the largest number of bytes that we can in this packet */
- buf = privreq->req.buf + privreq->req.xfrd;
+ buf = (ubyte*)privreq->req.buf + privreq->req.xfrd;
lpc214x_epwrite(privep->epphy, buf, nbytes);
/* Update for the next time through the loop */
@@ -1139,7 +1139,7 @@ static int lpc214x_rdrequest(struct lpc214x_ep_s *privep)
/* Receive the next packet */
- buf = privreq->req.buf + privreq->req.xfrd;
+ buf = (ubyte*)privreq->req.buf + privreq->req.xfrd;
nbytesread = lpc214x_epread(privep->epphy, buf, privep->ep.maxpacket);
if (nbytesread < 0)
{