aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-01-06 23:17:03 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-01-06 23:17:03 +0000
commit9fad1009735fb156763d8d690427dd635914c685 (patch)
tree9cd3077815a37f5c7fd02f23434417338f6e9bfe
parenta0df72a73eb7c097a380f68f3e0ecc49b1d01d81 (diff)
downloadpx4-firmware-9fad1009735fb156763d8d690427dd635914c685.tar.gz
px4-firmware-9fad1009735fb156763d8d690427dd635914c685.tar.bz2
px4-firmware-9fad1009735fb156763d8d690427dd635914c685.zip
PIC32 USB driver fixes
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4273 7fd9a85b-ad96-42d3-883c-3090e2eb8679
-rw-r--r--nuttx/arch/mips/src/pic32mx/pic32mx-usbdev.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/nuttx/arch/mips/src/pic32mx/pic32mx-usbdev.c b/nuttx/arch/mips/src/pic32mx/pic32mx-usbdev.c
index 2eb292bc4..948c7b9d1 100644
--- a/nuttx/arch/mips/src/pic32mx/pic32mx-usbdev.c
+++ b/nuttx/arch/mips/src/pic32mx/pic32mx-usbdev.c
@@ -1,8 +1,8 @@
/****************************************************************************
* arch/mips/src/pic32mx/pic32mx_usbdev.c
*
- * Copyright (C) 2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <gnutt@nuttx.orgr>
+ * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* References:
* This file derives from the STM32 USB device driver with modifications
@@ -2158,7 +2158,7 @@ static int pic32mx_interrupt(int irq, void *context)
/* Get the set of pending USB interrupts */
- pending = pic32mx_getreg(PIC32MX_USBOTG_IR) & pic32mx_getreg(PIC32MX_USBOTG_IE);
+ pending = pic32mx_getreg(PIC32MX_USB_IR) & pic32mx_getreg(PIC32MX_USB_IE);
usbtrace(TRACE_INTENTRY(PIC32MX_TRACEINTID_INTERRUPT), pending);
#ifdef CONFIG_USBOTG
@@ -2440,14 +2440,14 @@ static void pic32mx_resume(struct pic32mx_usbdev_s *priv)
regval = pic32mx_getreg(PIC32MX_USB_CON);
regval |= USB_CON_RESUME;
- pic32mx_putreg(regval, PIC32MX_USBOTG_IE);
+ pic32mx_putreg(regval, PIC32MX_USB_CON);
- /* Keep the RESUME line for 1-13 ms */
+ /* Keep the RESUME line set for 1-13 ms */
up_mdelay(10);
regval &= ~USB_CON_RESUME;
- pic32mx_putreg(regval, PIC32MX_USBOTG_IE);
+ pic32mx_putreg(regval, PIC32MX_USB_CON);
/* This function is called when the USB activity interrupt occurs.
* If using clock switching, this is the place to call out to