From: Asbjørn Sloth Tønnesen <asbjorn@asbjorn.biz>
Date: Thu, 2 Dec 2010 18:45:52 +0000 (+0000)
Subject: cleanup: main.c: remove trailing whitespace
X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=ed7a4dbc9f9d17923417de5ebc515e76e979c6f9;p=rapper.git

cleanup: main.c: remove trailing whitespace

Signed-off-by: Asbjørn Sloth Tønnesen <asbjorn@asbjorn.biz>
---

diff --git a/new_cmsis/main.c b/new_cmsis/main.c
index efd10ef..3daf11b 100644
--- a/new_cmsis/main.c
+++ b/new_cmsis/main.c
@@ -8,9 +8,9 @@
  *
  * Copyright (C) 2008 ARM Limited. All rights reserved.
  *
- * ARM Limited (ARM) is supplying this software for use with Cortex-M3 
- * processor based microcontrollers.  This file can be freely distributed 
- * within development tools that are supporting such ARM based processors. 
+ * ARM Limited (ARM) is supplying this software for use with Cortex-M3
+ * processor based microcontrollers.  This file can be freely distributed
+ * within development tools that are supporting such ARM based processors.
  *
  * THIS SOFTWARE IS PROVIDED "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED
  * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
@@ -75,9 +75,9 @@ int main (void) {
   if (SysTick_Config(SystemFrequency / 1000)) { /* Setup SysTick Timer for 1 msec interrupts  */
     while (1);                                  /* Capture error */
   }
-  
-  LED_Config();                             
- 
+
+  LED_Config();
+
   while(1) {
     LED_On ((1<<29));                           /* Turn on the LED. */
     LED_On ((1<<18));                           /* Turn on the LED. */
@@ -88,6 +88,6 @@ int main (void) {
     LED_On ((1<<29));                           /* Turn on the LED. */
     Delay (100);                                /* delay  100 Msec */
   }
-  
+
 }