Run wspurify script on /trunk/ and /branches/ C source files, to remove any trailing...
[pub/USBasp.git] / LUFA / Drivers / USB / Core / XMEGA / USBInterrupt_XMEGA.h
index f27ea60..c2436ca 100644 (file)
@@ -76,8 +76,8 @@
                                                USB.INTCTRLA |=  USB_BUSEVIE_bm;
                                                return;
                                        case USB_INT_SOFI:
-                                               USB.INTCTRLA |=  USB_SOFIE_bm;                                          
-                                               return;                         
+                                               USB.INTCTRLA |=  USB_SOFIE_bm;
+                                               return;
                                }
                        }
 
                                                USB.INTCTRLA &= ~USB_BUSEVIE_bm;
                                                return;
                                        case USB_INT_SOFI:
-                                               USB.INTCTRLA &= ~USB_SOFIE_bm;                                          
-                                               return;                         
+                                               USB.INTCTRLA &= ~USB_SOFIE_bm;
+                                               return;
                                }
                        }
-                       
+
                        static inline void USB_INT_Clear(const uint8_t Interrupt) ATTR_ALWAYS_INLINE;
                        static inline void USB_INT_Clear(const uint8_t Interrupt)
                        {
                                                USB.INTFLAGSACLR = USB_RSTIF_bm;
                                                return;
                                        case USB_INT_SOFI:
-                                               USB.INTFLAGSACLR = USB_SOFIF_bm;                                                
-                                               return;                         
+                                               USB.INTFLAGSACLR = USB_SOFIF_bm;
+                                               return;
                                }
                        }
-                       
+
                        static inline bool USB_INT_IsEnabled(const uint8_t Interrupt) ATTR_ALWAYS_INLINE ATTR_WARN_UNUSED_RESULT;
                        static inline bool USB_INT_IsEnabled(const uint8_t Interrupt)
                        {
                                        case USB_INT_SOFI:
                                                return ((USB.INTCTRLA & USB_SOFIE_bm) ? true : false);
                                }
-                               
+
                                return false;
                        }
-               
+
                        static inline bool USB_INT_HasOccurred(const uint8_t Interrupt) ATTR_ALWAYS_INLINE ATTR_WARN_UNUSED_RESULT;
                        static inline bool USB_INT_HasOccurred(const uint8_t Interrupt)
                        {
                                        case USB_INT_SOFI:
                                                return ((USB.INTFLAGSACLR & USB_SOFIF_bm) ? true : false);
                                }
-                               
+
                                return false;
                        }