Pull out common options in the StaticAnalysisTest build test makefile into a seperate...
[pub/USBasp.git] / LUFA / Drivers / USB / Class / Host / CDCClassHost.c
index 1844066..63df6b0 100644 (file)
@@ -1,13 +1,13 @@
 /*
              LUFA Library
 /*
              LUFA Library
-     Copyright (C) Dean Camera, 2011.
+     Copyright (C) Dean Camera, 2012.
 
   dean [at] fourwalledcubicle [dot] com
            www.lufa-lib.org
 */
 
 /*
 
   dean [at] fourwalledcubicle [dot] com
            www.lufa-lib.org
 */
 
 /*
-  Copyright 2011  Dean Camera (dean [at] fourwalledcubicle [dot] com)
+  Copyright 2012  Dean Camera (dean [at] fourwalledcubicle [dot] com)
 
   Permission to use, copy, modify, distribute, and sell this
   software and its documentation for any purpose is hereby granted
 
   Permission to use, copy, modify, distribute, and sell this
   software and its documentation for any purpose is hereby granted
@@ -145,13 +145,13 @@ uint8_t CDC_Host_ConfigurePipes(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo
                {
                        continue;
                }
                {
                        continue;
                }
-               
+
                if (!(Pipe_ConfigurePipe(PipeNum, Type, Token, EndpointAddress, Size,
                                         DoubleBanked ? PIPE_BANK_DOUBLE : PIPE_BANK_SINGLE)))
                {
                        return CDC_ENUMERROR_PipeConfigurationFailed;
                }
                if (!(Pipe_ConfigurePipe(PipeNum, Type, Token, EndpointAddress, Size,
                                         DoubleBanked ? PIPE_BANK_DOUBLE : PIPE_BANK_SINGLE)))
                {
                        return CDC_ENUMERROR_PipeConfigurationFailed;
                }
-               
+
                if (InterruptPeriod)
                  Pipe_SetInterruptPeriod(InterruptPeriod);
        }
                if (InterruptPeriod)
                  Pipe_SetInterruptPeriod(InterruptPeriod);
        }
@@ -504,6 +504,7 @@ static int CDC_Host_getchar_Blocking(FILE* Stream)
 }
 #endif
 
 }
 #endif
 
+// cppcheck-suppress unusedFunction
 void CDC_Host_Event_Stub(void)
 {
 
 void CDC_Host_Event_Stub(void)
 {