From 8613302525ef8ea02f501a33d5bd88185a903ae3 Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 6 Jan 2012 23:17:03 +0000 Subject: [PATCH] PIC32 USB driver fixes git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4273 42af7a65-404d-4744-a932-0658087f49c3 --- arch/mips/src/pic32mx/pic32mx-usbdev.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/mips/src/pic32mx/pic32mx-usbdev.c b/arch/mips/src/pic32mx/pic32mx-usbdev.c index 2eb292bc4f..948c7b9d18 100644 --- a/arch/mips/src/pic32mx/pic32mx-usbdev.c +++ b/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 + * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. + * Author: Gregory Nutt * * 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